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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/window-location-precedence.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
6 function test() {
7 var console = document.getElementById("result");
8 console.innerHTML =
9 (window.location instanceof HTMLInputElement) ? "FAIL" : "PASS";
10 }
11 </script>
12
13 <body onload="test()">
14 <form>
15 <input id="location" value="mmm" name="qs" type="text"/>
16 </form>
17 <div id="result"></div>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698