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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/window-collection-length-no-crash.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 months 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
(Empty)
1 <HTML>
2 <script>
3 if (window.layoutTestController) {
4 window.layoutTestController.dumpAsText();
5 window.layoutTestController.waitUntilDone();
6 }
7
8 function run_test() {
9 var f = window.frames;
10 document.getElementsByTagName("form")[0].submit();
11 f.length;
12 window.layoutTestController.notifyDone();
13 }
14
15 </script>
16 <BODY onload="run_test()">
17 <form action="about:blank" method="GET"></form>
18 This test windows.frames.length does not crash the browser after
19 the frame navigates away from the current page.<br>
20 You should not see this message if the test passes.<br>
21 </BODY>
22 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698