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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/onload-name-collision.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 <body onload="onload()">
3 <div id='result'>FAIL: this text should be replaced on success.<div>
4 <script>
5 if (window.layoutTestController)
6 layoutTestController.dumpAsText();
7 // See http://b/issue?id=944690
8 function onload() {
9 var result = document.getElementById('result');
10 result.innerHTML='PASS: onload function gets called.';
11 }
12 </script>
13 </body>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698