Index: third_party/WebKit/LayoutTests/imported/wpt/shadow-dom/untriaged/events/event-dispatch/test-001.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/shadow-dom/untriaged/events/event-dispatch/test-001.html b/third_party/WebKit/LayoutTests/imported/wpt/shadow-dom/untriaged/events/event-dispatch/test-001.html |
deleted file mode 100644 |
index e10ef19b899370c93af3cf2f3bd4a153ceae6d8e..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/shadow-dom/untriaged/events/event-dispatch/test-001.html |
+++ /dev/null |
@@ -1,258 +0,0 @@ |
-<!DOCTYPE html> |
-<!-- |
-Distributed under both the W3C Test Suite License [1] and the W3C |
-3-clause BSD License [2]. To contribute to a W3C Test Suite, see the |
-policies and contribution forms [3]. |
- |
-[1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license |
-[2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license |
-[3] http://www.w3.org/2004/10/27-testcases |
---> |
-<html> |
-<head> |
-<title>Shadow DOM Test: A_05_05_01</title> |
-<link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru"> |
-<link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#event-dispatch"> |
-<meta name="assert" content="Event Dispatch: At the time of event dispatch:The Event target and currentTarget attributes must return the relative target for the node on which event listeners are invoked"> |
-<script src="/resources/testharness.js"></script> |
-<script src="/resources/testharnessreport.js"></script> |
-<script src="../../../../html/resources/common.js"></script> |
-<script src="../../../resources/shadow-dom-utils.js"></script> |
-</head> |
-<body> |
-<div id="log"></div> |
-<script> |
-var A_05_05_01_T01 = async_test('A_05_05_01_T01'); |
- |
-A_05_05_01_T01.step(unit(function (ctx) { |
- |
- var d = newRenderedHTMLDocument(ctx); |
- |
- var invoked = false; |
- |
- roots = createTestMediaPlayer(d); |
- |
- //expected result of what relative target should be see |
- //see at http://www.w3.org/TR/shadow-dom/#event-retargeting-example |
- |
- //For #volume-slider-thumb relative target #volume-slider-thumb |
- roots.volumeShadowRoot.querySelector('#volume-slider-thumb').addEventListener('click', |
- A_05_05_01_T01.step_func(function(event) { |
- invoked = true; |
- assert_equals(event.target.getAttribute('id'), 'volume-slider-thumb', |
- 'Point 1: Wrong target'); |
- assert_equals(event.currentTarget.getAttribute('id'), 'volume-slider-thumb', |
- 'Point 1: Wrong currentTarget'); |
- }), false); |
- |
- var event = d.createEvent('HTMLEvents'); |
- event.initEvent ('click', true, false); |
- roots.volumeShadowRoot.querySelector('#volume-slider-thumb').dispatchEvent(event); |
- |
- assert_true(invoked, 'Event listener was not invoked'); |
- |
- A_05_05_01_T01.done(); |
-})); |
- |
- |
-var A_05_05_01_T02 = async_test('A_05_05_01_T02'); |
- |
-A_05_05_01_T02.step(unit(function (ctx) { |
- |
- var d = newRenderedHTMLDocument(ctx); |
- |
- var invoked = false; |
- |
- roots = createTestMediaPlayer(d); |
- |
- //expected result of what relative target should be see |
- //see at http://www.w3.org/TR/shadow-dom/#event-retargeting-example |
- |
- //For #volume-shadow-root relative target #volume-slider-thumb |
- roots.volumeShadowRoot.addEventListener('click', |
- A_05_05_01_T02.step_func(function(event) { |
- invoked = true; |
- assert_equals(event.target.getAttribute('id'), 'volume-slider-thumb', |
- 'Wrong target'); |
- assert_true(event.currentTarget == roots.volumeShadowRoot, |
- 'Wrong currentTarget'); |
- }), false); |
- |
- var event = d.createEvent('HTMLEvents'); |
- event.initEvent ('click', true, false); |
- roots.volumeShadowRoot.querySelector('#volume-slider-thumb').dispatchEvent(event); |
- |
- assert_true(invoked, 'Event listener was not invoked'); |
- |
- A_05_05_01_T02.done(); |
-})); |
- |
- |
-var A_05_05_01_T03 = async_test('A_05_05_01_T03'); |
- |
-A_05_05_01_T03.step(unit(function (ctx) { |
- |
- var d = newRenderedHTMLDocument(ctx); |
- |
- var invoked = false; |
- |
- roots = createTestMediaPlayer(d); |
- |
- //expected result of what relative target should be see |
- //see at http://www.w3.org/TR/shadow-dom/#event-retargeting-example |
- |
- //For #volume-slider relative target #volume-shadow-host |
- roots.playerShadowRoot.querySelector('#volume-slider').addEventListener('click', |
- A_05_05_01_T03.step_func(function(event) { |
- invoked = true; |
- assert_equals(event.target.getAttribute('id'), 'volume-shadow-host', |
- 'Wrong target'); |
- assert_equals(event.currentTarget.getAttribute('id'), 'volume-slider', |
- 'Wrong currentTarget'); |
- }), false); |
- |
- var event = d.createEvent('HTMLEvents'); |
- event.initEvent ('click', true, false); |
- roots.volumeShadowRoot.querySelector('#volume-slider-thumb').dispatchEvent(event); |
- |
- assert_true(invoked, 'Event listener was not invoked'); |
- |
- A_05_05_01_T03.done(); |
-})); |
- |
- |
- |
-var A_05_05_01_T04 = async_test('A_05_05_01_T04'); |
- |
-A_05_05_01_T04.step(unit(function (ctx) { |
- |
- var d = newRenderedHTMLDocument(ctx); |
- |
- var invoked = false; |
- |
- roots = createTestMediaPlayer(d); |
- |
- //expected result of what relative target should be see |
- //see at http://www.w3.org/TR/shadow-dom/#event-retargeting-example |
- |
- //For #volume-slider-container relative target #volume-shadow-host |
- roots.playerShadowRoot.querySelector('#volume-slider-container').addEventListener('click', |
- A_05_05_01_T04.step_func(function(event) { |
- invoked = true; |
- assert_equals(event.target.getAttribute('id'), 'volume-shadow-host', |
- 'Wrong target'); |
- assert_equals(event.currentTarget.getAttribute('id'), 'volume-slider-container', |
- 'Wrong currentTarget'); |
- }), false); |
- |
- var event = d.createEvent('HTMLEvents'); |
- event.initEvent ('click', true, false); |
- roots.volumeShadowRoot.querySelector('#volume-slider-thumb').dispatchEvent(event); |
- |
- assert_true(invoked, 'Event listener was not invoked'); |
- |
- A_05_05_01_T04.done(); |
-})); |
- |
- |
-var A_05_05_01_T05 = async_test('A_05_05_01_T05'); |
- |
-A_05_05_01_T05.step(unit(function (ctx) { |
- |
- var d = newRenderedHTMLDocument(ctx); |
- |
- var invoked = false; |
- |
- roots = createTestMediaPlayer(d); |
- |
- //expected result of what relative target should be see |
- //see at http://www.w3.org/TR/shadow-dom/#event-retargeting-example |
- |
- //For #controls relative target #volume-shadow-host |
- roots.playerShadowRoot.querySelector('#controls').addEventListener('click', |
- A_05_05_01_T05.step_func(function(event) { |
- invoked = true; |
- assert_equals(event.target.getAttribute('id'), 'volume-shadow-host', |
- 'Wrong target'); |
- assert_equals(event.currentTarget.getAttribute('id'), 'controls', |
- 'Wrong currentTarget'); |
- }), false); |
- |
- var event = d.createEvent('HTMLEvents'); |
- event.initEvent ('click', true, false); |
- roots.volumeShadowRoot.querySelector('#volume-slider-thumb').dispatchEvent(event); |
- |
- assert_true(invoked, 'Event listener was not invoked'); |
- |
- A_05_05_01_T05.done(); |
-})); |
- |
- |
-var A_05_05_01_T06 = async_test('A_05_05_01_T06'); |
- |
-A_05_05_01_T06.step(unit(function (ctx) { |
- |
- var d = newRenderedHTMLDocument(ctx); |
- |
- var invoked = false; |
- |
- roots = createTestMediaPlayer(d); |
- |
- //expected result of what relative target should be see |
- //see at http://www.w3.org/TR/shadow-dom/#event-retargeting-example |
- |
- //For #player-shadow-host relative target #player-shadow-host |
- d.querySelector('#player-shadow-host').addEventListener('click', |
- A_05_05_01_T06.step_func(function(event) { |
- invoked = true; |
- assert_equals(event.target.getAttribute('id'), 'player-shadow-host', |
- 'Wrong target'); |
- assert_equals(event.currentTarget.getAttribute('id'), 'player-shadow-host', |
- 'Wrong currentTarget'); |
- }), false); |
- |
- var event = d.createEvent('HTMLEvents'); |
- event.initEvent ('click', true, false); |
- roots.volumeShadowRoot.querySelector('#volume-slider-thumb').dispatchEvent(event); |
- |
- assert_true(invoked, 'Event listener was not invoked'); |
- |
- A_05_05_01_T06.done(); |
-})); |
- |
- |
- |
-var A_05_05_01_T07 = async_test('A_05_05_01_T07'); |
- |
-A_05_05_01_T07.step(unit(function (ctx) { |
- |
- var d = newRenderedHTMLDocument(ctx); |
- |
- var invoked = false; |
- |
- roots = createTestMediaPlayer(d); |
- |
- //expected result of what relative target should be see |
- //see at http://www.w3.org/TR/shadow-dom/#event-retargeting-example |
- |
- //For #player relative target #player-shadow-host |
- d.querySelector('#player').addEventListener('click', |
- A_05_05_01_T07.step_func(function(event) { |
- invoked = true; |
- assert_equals(event.target.getAttribute('id'), 'player-shadow-host', |
- 'Wrong target'); |
- assert_equals(event.currentTarget.getAttribute('id'), 'player', |
- 'Wrong currentTarget'); |
- }), false); |
- |
- var event = d.createEvent('HTMLEvents'); |
- event.initEvent ('click', true, false); |
- roots.volumeShadowRoot.querySelector('#volume-slider-thumb').dispatchEvent(event); |
- |
- assert_true(invoked, 'Event listener was not invoked'); |
- |
- A_05_05_01_T07.done(); |
-})); |
-</script> |
-</body> |
-</html> |