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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/relatedevent.html

Issue 2905763003: Rollback ContextMenu (Closed)
Patch Set: Rebase Created 3 years, 7 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/fast/events/relatedevent.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/relatedevent.html b/third_party/WebKit/LayoutTests/fast/events/relatedevent.html
deleted file mode 100644
index b746f7499a692608a4bef81bf2928fb6256ba7ae..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/events/relatedevent.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-</head>
-<script>
-
-description("Tests to confirm behavior of updating IDL attributes of RelatedEvent.");
-
-var relatedEvent = new RelatedEvent("foo");
-
-// We should not be able to update readonly attributes.
-relatedEvent.type = "bar";
-relatedEvent.bubbles = true;
-relatedEvent.cancelable = true;
-relatedEvent.relatedTarget = document;
-
-shouldBeEqualToString("relatedEvent.type", "foo");
-shouldBeFalse("relatedEvent.bubbles");
-shouldBeFalse("relatedEvent.cancelable");
-shouldBeNull("relatedEvent.relatedTarget");
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698