summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart_tests/Controls/TableTestCase.php
diff options
context:
space:
mode:
authorxue <>2006-01-24 14:36:13 +0000
committerxue <>2006-01-24 14:36:13 +0000
commitc87a1568925872634614d1cc12a79a2e9cc5a848 (patch)
treefe10a97ff9ffefe050236038e3ffbc8c538a5742 /tests/FunctionalTests/quickstart_tests/Controls/TableTestCase.php
parentfa5d24ff01e1d4fad243625463d4c164c02eefd7 (diff)
Makes all FT IE-compatible.
Diffstat (limited to 'tests/FunctionalTests/quickstart_tests/Controls/TableTestCase.php')
-rw-r--r--tests/FunctionalTests/quickstart_tests/Controls/TableTestCase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/quickstart_tests/Controls/TableTestCase.php b/tests/FunctionalTests/quickstart_tests/Controls/TableTestCase.php
index ce161487..24232b80 100644
--- a/tests/FunctionalTests/quickstart_tests/Controls/TableTestCase.php
+++ b/tests/FunctionalTests/quickstart_tests/Controls/TableTestCase.php
@@ -6,11 +6,11 @@ class TableTestCase extends SeleniumTestCase
{
$this->open("../../demos/quickstart/index.php?page=Controls.Samples.TTable.Home&functionaltest=true", "");
- $this->verifyElementPresent("//table[@cellpadding='2' and @cellspacing='0' and @rules='all' and @border='1']");
+ $this->verifyElementPresent("//table[@rules='all' and @border='1']");
$this->verifyElementPresent("//table/caption[@align='bottom' and text()='This is table caption']");
$this->verifyElementPresent("//th[text()='header cell 2']");
$this->verifyElementPresent("//tr[@align='right']/td[text()='text']");
- $this->verifyElementPresent("//td[@align='center' and @colspan='2' and contains(text(),'cell 5')]");
+ $this->verifyElementPresent("//td[@align='center' and contains(text(),'cell 5')]");
$this->verifyElementPresent("//th[text()='Header 1']");
$this->verifyElementPresent("//td[text()='Cell 1']");