Index: third_party/WebKit/LayoutTests/accessibility/table-header.html |
diff --git a/third_party/WebKit/LayoutTests/accessibility/table-header.html b/third_party/WebKit/LayoutTests/accessibility/table-header.html |
index b933b27eaba32cb9046ca150cb365de69e8aac22..0297a705ed24803ec017931536380b1e3c4f9c83 100644 |
--- a/third_party/WebKit/LayoutTests/accessibility/table-header.html |
+++ b/third_party/WebKit/LayoutTests/accessibility/table-header.html |
@@ -24,13 +24,13 @@ |
var tableheader = table.tableHeader(); |
shouldBeTrue("tableheader.isValid"); |
shouldBe("tableheader.childrenCount", "2"); |
- window.firstHeaderText = tableheader.childAtIndex(0).childAtIndex(0).stringValue; |
- shouldBe("firstHeaderText", "'AXValue: header 1'"); |
- window.secondHeaderText = tableheader.childAtIndex(1).childAtIndex(0).stringValue; |
- shouldBe("secondHeaderText", "'AXValue: header 2'"); |
+ window.firstHeaderText = tableheader.childAtIndex(0).childAtIndex(0).name; |
+ shouldBe("firstHeaderText", "'header 1'"); |
+ window.secondHeaderText = tableheader.childAtIndex(1).childAtIndex(0).name; |
+ shouldBe("secondHeaderText", "'header 2'"); |
// Clear the HTML for cleaner results. |
- document.getElementById("content").innerHTML = ""; |
+ document.getElementById("content").innerHTML = ""; |
} |
@@ -38,4 +38,3 @@ |
</body> |
</html> |
- |