| Index: third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary.html
|
| index 4ef0ab8a0c64873894b6058de6ce920158c2d62d..b72b1973e22eafeef39a051f585363be2f3fc155 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary.html
|
| @@ -9,7 +9,7 @@
|
| <div id="sandbox"></div>
|
| <pre id="console"></pre>
|
| <script>
|
| -description("Tests to ensure that some kinds of events are stopeed at shadow boundary.");
|
| +description("Tests to ensure that all kinds of events are not stopeed at shadow boundary if created by users.");
|
|
|
| var eventRecords = {};
|
|
|
| @@ -49,7 +49,7 @@ function recordEvent(event)
|
| eventRecords[eventType].push(eventString);
|
| }
|
|
|
| -debug('Other events than "click" should be stopped at shadow boundary. A "click" is added for the purpose of comparing results.');
|
| +debug('None of the events should be stopped at a Shadow boundary if created by users.');
|
|
|
| var events = ['abort', 'select', 'change', 'reset', 'resize', 'scroll', 'selectstart', 'load', 'error', 'click'];
|
|
|
| @@ -62,7 +62,7 @@ function addEventListeners(nodes)
|
| }
|
| }
|
|
|
| -function testEventsShoudBeStoppedAtShadowBoundary()
|
| +function testEventsShouldNotBeStoppedAtShadowBoundary()
|
| {
|
| var sandbox = document.getElementById('sandbox');
|
| sandbox.innerHTML = '';
|
| @@ -138,7 +138,7 @@ function testEventsInMultipleShadowTrees()
|
|
|
| function test()
|
| {
|
| - testEventsShoudBeStoppedAtShadowBoundary()
|
| + testEventsShouldNotBeStoppedAtShadowBoundary()
|
| testEventsFiredOnDistributedNodesShouldNotBeStoppedAtShadowBoundary();
|
| testEventsInMultipleShadowTrees();
|
| }
|
|
|