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

Unified Diff: webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice.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 side-by-side diff with in-line comments
Download patch
Index: webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice.html
===================================================================
--- webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice.html (revision 12664)
+++ webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice.html (working copy)
@@ -1,22 +0,0 @@
-<html>
-<head>
- <!-- any unknown element in HEAD will trigger creation of a BODY node -->
- <anytag>
- <script type="text/javascript">
- if (window.layoutTestController)
- layoutTestController.dumpAsText()
-
- var count = 2;
- function testDoubleLoad() {
- if (!--count)
- document.getElementById("status").innerHTML = "failed";
- }
- </script>
-</head>
-<body onload="testDoubleLoad()">
- <p>Makes sure an inline "load" event does not fire twice. This may occur if<br>
- an inline event listener is not removed prior to being re-added in the case of<br>
- multiple body nodes in the document.</p>
- <p>This test has <span id="status">succeeded</span>.
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698