Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: LayoutTests/fast/dom/collection-length-should-not-be-overridden.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <div id="testElements"> 4 <div id="testElements">
5 <form> 5 <form>
6 <input type="text" name="some"> 6 <input type="text" name="some">
7 <input type="text" name="length"> 7 <input type="text" name="length">
8 </form> 8 </form>
9 <form> 9 <form>
10 <select> 10 <select>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 shouldBe("table.rows.length", "2"); 52 shouldBe("table.rows.length", "2");
53 shouldBe("table.rows[0]", "table.rows['another']"); 53 shouldBe("table.rows[0]", "table.rows['another']");
54 shouldBe("table.rows[1].id", "'length'"); 54 shouldBe("table.rows[1].id", "'length'");
55 55
56 document.getElementById('testElements').style.display = 'none'; 56 document.getElementById('testElements').style.display = 'none';
57 57
58 var successfullyParsed = true; 58 var successfullyParsed = true;
59 59
60 </script> 60 </script>
61 <script src="../js/resources/js-test-post.js"></script>
62 </body> 61 </body>
63 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698