Title: [137978] trunk/LayoutTests
Revision
137978
Author
[email protected]
Date
2012-12-17 20:28:42 -0800 (Mon, 17 Dec 2012)

Log Message

fast/dom/shadow/host-wrapper-reclaimed.html is failing on EFL bots
https://bugs.webkit.org/show_bug.cgi?id=103109

Reviewed by Kentaro Hara.

host-wrapper-reclaimed uses gc(), but the function gc is not defined
in all platforms, e.g. "ReferenceError: Can't find variable: gc".
So we should include js-test-pre.js, which defines gc.

* fast/dom/shadow/host-wrapper-reclaimed-expected.txt:
* fast/dom/shadow/host-wrapper-reclaimed.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (137977 => 137978)


--- trunk/LayoutTests/ChangeLog	2012-12-18 04:19:25 UTC (rev 137977)
+++ trunk/LayoutTests/ChangeLog	2012-12-18 04:28:42 UTC (rev 137978)
@@ -1,3 +1,17 @@
+2012-12-17  Takashi Sakamoto  <[email protected]>
+
+        fast/dom/shadow/host-wrapper-reclaimed.html is failing on EFL bots
+        https://bugs.webkit.org/show_bug.cgi?id=103109
+
+        Reviewed by Kentaro Hara.
+
+        host-wrapper-reclaimed uses gc(), but the function gc is not defined
+        in all platforms, e.g. "ReferenceError: Can't find variable: gc".
+        So we should include js-test-pre.js, which defines gc.
+
+        * fast/dom/shadow/host-wrapper-reclaimed-expected.txt:
+        * fast/dom/shadow/host-wrapper-reclaimed.html:
+
 2012-12-17  Dean Jackson  <[email protected]>
 
         Track menu should be sorted

Modified: trunk/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed-expected.txt (137977 => 137978)


--- trunk/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed-expected.txt	2012-12-18 04:19:25 UTC (rev 137977)
+++ trunk/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed-expected.txt	2012-12-18 04:28:42 UTC (rev 137978)
@@ -1 +1,4 @@
+PASS successfullyParsed is true
+
+TEST COMPLETE
 PASS unless crash.

Modified: trunk/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed.html (137977 => 137978)


--- trunk/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed.html	2012-12-18 04:19:25 UTC (rev 137977)
+++ trunk/LayoutTests/fast/dom/shadow/host-wrapper-reclaimed.html	2012-12-18 04:28:42 UTC (rev 137978)
@@ -1,12 +1,10 @@
 <!DOCTYPE html>
 <html>
 <head>
+<script src=""
 </head>
 <body>
 <script>
-if (window.testRunner)
-    testRunner.dumpAsText();
-
 function makeOrphanShadow() {
     var host = document.createElement("div");
     var shadow = host.webkitCreateShadowRoot();
@@ -23,5 +21,6 @@
 
 document.body.innerHTML = "PASS unless crash.";
 </script>
+<script src=""
 </body>
 </html>
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to