Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/editing/focus/focus-management/focus-events.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/editing/focus/focus-management/focus-events.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/editing/focus/focus-management/focus-events.html |
deleted file mode 100644 |
index bd5e60866f99cd9d8eacee8f99f6b988234c5e4a..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/editing/focus/focus-management/focus-events.html |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-<!DOCTYPE html> |
-<meta charset=utf-8> |
-<title>Focus management</title> |
-<link rel="author" title="Denis Ah-Kang" href="mailto:denis@w3.org"> |
-<link rel=help href="https://html.spec.whatwg.org/multipage/#focus-management"> |
-<script src="../../../../../../resources/testharness.js"></script> |
-<script src="../../../../../../resources/testharnessreport.js"></script> |
-<div id="log"></div> |
-<input type=text id=i1> |
-<input type=text id=i2> |
-<script> |
- var i1 = document.getElementById('i1'), |
- i2 = document.getElementById('i2'), |
- t1 = async_test("focusing on a focusable element fires a focus event at the element"), |
- t2 = async_test("focusing on a focusable element fires a blur event at the previous focussed element"); |
- |
- i2.onfocus = t1.step_func_done(function(e){ |
- assert_true(e.isTrusted, "focus event is trusted"); |
- assert_false(e.bubbles, "focus event doesn't bubble"); |
- assert_false(e.cancelable, "focus event is not cancelable"); |
- assert_equals(document.activeElement, i2); |
- }); |
- |
- i1.onblur = t2.step_func_done(function(e){ |
- assert_true(e.isTrusted, "blur event is trusted"); |
- assert_false(e.bubbles, "blur event doesn't bubble"); |
- assert_false(e.cancelable, "blur event is not cancelable"); |
- }); |
- |
- i1.focus(); |
- i2.focus(); |
-</script> |