Title: [95323] trunk/LayoutTests
Revision
95323
Author
wei...@apple.com
Date
2011-09-16 13:59:25 -0700 (Fri, 16 Sep 2011)

Log Message

Replace use of access to nodeList using call, with array style notation.

* editing/pasteboard/paste-noscript.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (95322 => 95323)


--- trunk/LayoutTests/ChangeLog	2011-09-16 20:43:41 UTC (rev 95322)
+++ trunk/LayoutTests/ChangeLog	2011-09-16 20:59:25 UTC (rev 95323)
@@ -1,3 +1,9 @@
+2011-09-16  Sam Weinig  <s...@webkit.org>
+
+        Replace use of access to nodeList using call, with array style notation.
+
+        * editing/pasteboard/paste-noscript.html:
+
 2011-09-16  Mihai Parparita  <mih...@chromium.org>
 
         http/tests/history/back-with-fragment-change.php fails on non-Chromium bots

Modified: trunk/LayoutTests/editing/pasteboard/paste-noscript.html (95322 => 95323)


--- trunk/LayoutTests/editing/pasteboard/paste-noscript.html	2011-09-16 20:43:41 UTC (rev 95322)
+++ trunk/LayoutTests/editing/pasteboard/paste-noscript.html	2011-09-16 20:59:25 UTC (rev 95323)
@@ -32,19 +32,19 @@
 document.execCommand("Paste");
 
 log(document.getElementById("button1").outerHTML);
-log(document.getElementById("pastehere").childNodes(0).outerHTML);
+log(document.getElementById("pastehere").childNodes[0].outerHTML);
 
 log(document.getElementById("anchor1").outerHTML);
-log(document.getElementById("pastehere").childNodes(3).outerHTML);
+log(document.getElementById("pastehere").childNodes[3].outerHTML);
 
 log(document.getElementById("anchor2").outerHTML);
-log(document.getElementById("pastehere").childNodes(5).outerHTML);
+log(document.getElementById("pastehere").childNodes[5].outerHTML);
 
 log(document.getElementById("iframe1").outerHTML);
-log(document.getElementById("pastehere").childNodes(7).outerHTML);
+log(document.getElementById("pastehere").childNodes[7].outerHTML);
 
 log(document.getElementById("form1").outerHTML);
-log(document.getElementById("pastehere").childNodes(8).outerHTML);
+log(document.getElementById("pastehere").childNodes[8].outerHTML);
 
 function log(str) {
     var li = document.createElement("li");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to