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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/window-image-name-conflict.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, 9 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 <head>
3 <script>
4 if (window.layoutTestController)
5 layoutTestController.dumpAsText();
6
7 function runTest() {
8 try {
9 new Image();
10 document.getElementById("result").innerHTML = 'PASS';
11 } catch (e) {
12 // failed
13 }
14 }
15 </script>
16 </head>
17
18 <body onload="runTest()">
19 <img id="Image" src="resources/1.gif" />
20 <div id="result">FAIL</div>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698