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

Unified Diff: third_party/WebKit/LayoutTests/transitions/transition-end-event-create.html

Issue 2822083002: Remove non-standard document.createEvent('WebKitTransitionEvent'). (Closed)
Patch Set: . Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/transitions/transition-end-event-create.html
diff --git a/third_party/WebKit/LayoutTests/transitions/transition-end-event-create.html b/third_party/WebKit/LayoutTests/transitions/transition-end-event-create.html
deleted file mode 100644
index b2a51ce7d31557774388a9ca55d57042536b1a58..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/transitions/transition-end-event-create.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<html>
-<head>
-<script src="../resources/js-test.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-<script>
-
-description("Test dynamic creation of WebKitTransitionEnd event.");
-
-if (document.createEvent)
- testPassed("document.createEvent exists");
-else
- testFailed("document.createEvent missing");
-
-debug("");
-debug("Test creation of WebKitTransitionEvent");
-
-var ev = document.createEvent("WebKitTransitionEvent");
-
-shouldBe("typeof(ev)", "'object'");
-shouldBe("ev.propertyName", "''");
-shouldBe("ev.elapsedTime", "0.0");
-
-debug("");
-debug("Create a MouseEvent and make sure it doesn't have the WebKitTransitionEnd event properties");
-
-ev = document.createEvent("MouseEvent");
-
-shouldBe("typeof(ev)", "'object'");
-shouldBe("ev.propertyName", "undefined");
-shouldBe("ev.elapsedTime", "undefined");
-
-debug("");
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698