Title: [143182] trunk/LayoutTests
Revision
143182
Author
[email protected]
Date
2013-02-18 02:31:19 -0800 (Mon, 18 Feb 2013)

Log Message

Follow up to r143112, fixing tests.
Not reviewed.

* inspector/elements/insert-node-expected.txt:
* inspector/elements/insert-node.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (143181 => 143182)


--- trunk/LayoutTests/ChangeLog	2013-02-18 10:30:06 UTC (rev 143181)
+++ trunk/LayoutTests/ChangeLog	2013-02-18 10:31:19 UTC (rev 143182)
@@ -1,5 +1,13 @@
 2013-02-18  Pavel Feldman  <[email protected]>
 
+        Follow up to r143112, fixing tests.
+        Not reviewed.
+
+        * inspector/elements/insert-node-expected.txt:
+        * inspector/elements/insert-node.html:
+
+2013-02-18  Pavel Feldman  <[email protected]>
+
         Web Inspector: allow 0 as a formatted parameter in console message.
         https://bugs.webkit.org/show_bug.cgi?id=110096
 

Modified: trunk/LayoutTests/inspector/elements/insert-node-expected.txt (143181 => 143182)


--- trunk/LayoutTests/inspector/elements/insert-node-expected.txt	2013-02-18 10:30:06 UTC (rev 143181)
+++ trunk/LayoutTests/inspector/elements/insert-node-expected.txt	2013-02-18 10:31:19 UTC (rev 143182)
@@ -49,7 +49,7 @@
       <div id="child2"></div>
       <div id="child3"></div>
       <div id="child-after"></div>
-      <div style="display: none;" id="child-with-text">Text</div>
+      <div id="child-with-text" style="display: none;">Text</div>
   </div>
 Success: child text is bound
 
@@ -64,7 +64,7 @@
           "First text"
       </div>
       <div id="child-after"></div>
-      <div style="display: none;" id="child-with-text">Text</div>
+      <div id="child-with-text" style="display: none;">Text</div>
   </div>
 Success: child text is bound
 

Modified: trunk/LayoutTests/inspector/elements/insert-node.html (143181 => 143182)


--- trunk/LayoutTests/inspector/elements/insert-node.html	2013-02-18 10:30:06 UTC (rev 143181)
+++ trunk/LayoutTests/inspector/elements/insert-node.html	2013-02-18 10:31:19 UTC (rev 143182)
@@ -33,9 +33,9 @@
 {
     var container = document.getElementById("container");
     var child = document.createElement("div");
-    child.style.display = "none";
+    child.setAttribute("id", "child-with-text");
+    child.setAttribute("style", "display: none;");
     child.innerText = "Text";
-    child.setAttribute("id", "child-with-text");
     container.appendChild(child);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to