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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_query.html

Issue 2123803002: Remove EventListenerOptions LayoutTests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Real CL for review Created 4 years, 5 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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_inequality.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_query.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_query.html b/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_query.html
deleted file mode 100644
index 0be36051302c92f7810e785fecfd8133863e9522..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_query.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE HTML>
-<body/>
-<script src="../../../resources/testharness.js"></script>
-<script src="../../../resources/testharnessreport.js"></script>
-
-<!-- This test is run with normal layout tests with passiveEventListeners
- enabled and in virtual/stable with passiveEventListeners disabled -->
-<script>
-test(function(t) {
- var supportsPassive = false;
- var query_function = function(e) {};
- var query_options = {
- get passive() {
- supportsPassive = true;
- return false;
- },
- get dummy() {
- assert_unreached("dummy value getter invoked");
- return false;
- }
- };
-
- document.addEventListener('test_event', query_function, query_options);
- assert_equals(supportsPassive, internals.runtimeFlags.passiveEventListenersEnabled);
- t.done();
-}, "Supports Passive");
-</script>
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/events/eventlisteneroptions/passive_inequality.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698