| Index: LayoutTests/editing/shadow/breaking-editing-boundaries.html
|
| diff --git a/LayoutTests/editing/shadow/breaking-editing-boundaries.html b/LayoutTests/editing/shadow/breaking-editing-boundaries.html
|
| index 2126935e8ca2e30490daa0b14c77050d0d56b899..0cb1ec5e84a03ca3df520a2afe614e4de68da62c 100644
|
| --- a/LayoutTests/editing/shadow/breaking-editing-boundaries.html
|
| +++ b/LayoutTests/editing/shadow/breaking-editing-boundaries.html
|
| @@ -14,11 +14,11 @@ This is because the start position of Selection comes after the end position of
|
|
|
| <script>
|
| var shadowRoot = host.createShadowRoot();
|
| -shadowRoot.innerHTML = "<span id='shadow-host'>before shadow<shadow id='shadow'><content></content></shadow>after shadow</span>"
|
| +shadowRoot.innerHTML = "<span id='shadow-host'>before shadow<shadow id='shadow'></shadow>after shadow</span>"
|
|
|
| var nestedShadowHost = shadowRoot.getElementById('shadow-host');
|
| var nestedShadowRoot = nestedShadowHost.createShadowRoot();
|
| -nestedShadowRoot.innerHTML = "<span contenteditable>before nested<shadow><content></content></shadow>after nested</span>"
|
| +nestedShadowRoot.innerHTML = "<span contenteditable>before nested<shadow></shadow>after nested</span>"
|
|
|
| // This should not cause a crash.
|
| eventSender.mouseMoveTo(target.offsetLeft - 10, target.offsetTop + target.offsetHeight / 2);
|
|
|