Changeset 119481 in webkit
- Timestamp:
- Jun 5, 2012, 4:28:24 AM (14 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
fast/dom/shadow/content-element-api-expected.txt (modified) (1 diff)
-
fast/dom/shadow/content-element-api.html (modified) (1 diff)
-
fast/dom/shadow/shadow-element-expected.txt (modified) (1 diff)
-
fast/dom/shadow/shadow-element.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r119479 r119481 1 2012-06-05 MORITA Hajime <morrita@google.com> 2 3 https://bugs.webkit.org/show_bug.cgi?id=88029 4 content-element-api.html and shadow-element.html depend on V8. 5 6 Reviewed by Kentaro Hara. 7 8 Replaced typeof checking with comparison. 9 10 * fast/dom/shadow/content-element-api.html: 11 * fast/dom/shadow/shadow-element.html: 12 1 13 2012-06-04 Kinuko Yasuda <kinuko@chromium.org> 2 14 -
trunk/LayoutTests/fast/dom/shadow/content-element-api-expected.txt
r118902 r119481 8 8 PASS contentSimplest.getAttribute('select') is 'bar' 9 9 PASS 0 <= contentSimplest.constructor.toString().indexOf('HTMLContentElement') is true 10 PASS typeof window.HTMLContentElement is 'function'10 PASS window.HTMLContentElement is contentSimplest.constructor 11 11 PASS successfullyParsed is true 12 12 -
trunk/LayoutTests/fast/dom/shadow/content-element-api.html
r118902 r119481 17 17 shouldBe("contentSimplest.getAttribute('select')", "'bar'"); 18 18 shouldBeTrue("0 <= contentSimplest.constructor.toString().indexOf('HTMLContentElement')"); 19 shouldBe(" typeof window.HTMLContentElement", "'function'");19 shouldBe("window.HTMLContentElement", "contentSimplest.constructor"); 20 20 </script> 21 21 <script src="../../js/resources/js-test-post.js"></script> -
trunk/LayoutTests/fast/dom/shadow/shadow-element-expected.txt
r118902 r119481 6 6 PASS shadow.nodeName is 'SHADOW' 7 7 PASS 0 <= shadow.constructor.toString().indexOf('HTMLShadowElement') is true 8 PASS typeof window.HTMLShadowElement is 'function'8 PASS window.HTMLShadowElement is shadow.constructor 9 9 PASS successfullyParsed is true 10 10 -
trunk/LayoutTests/fast/dom/shadow/shadow-element.html
r118902 r119481 13 13 shouldBe("shadow.nodeName", "'SHADOW'"); 14 14 shouldBeTrue("0 <= shadow.constructor.toString().indexOf('HTMLShadowElement')"); 15 shouldBe(" typeof window.HTMLShadowElement", "'function'");15 shouldBe("window.HTMLShadowElement", "shadow.constructor"); 16 16 17 17 </script>
Note:
See TracChangeset
for help on using the changeset viewer.