| Index: third_party/WebKit/LayoutTests/svg/custom/use-event-attribute.html
|
| diff --git a/third_party/WebKit/LayoutTests/svg/custom/use-event-attribute.html b/third_party/WebKit/LayoutTests/svg/custom/use-event-attribute.html
|
| deleted file mode 100644
|
| index bec73189add015d23149f8fd90d4327391a09152..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/svg/custom/use-event-attribute.html
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -<!DOCTYPE HTML>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<script>
|
| -window.targets = [];
|
| -async_test((t) => {
|
| - window.addEventListener('load', t.step_func(() => {
|
| - assert_array_equals(window.targets, [document.querySelector('image')]);
|
| - t.done();
|
| - }));
|
| -}, 'An event listener should not be called on a cloned node in a svg <use>\'s UA shadow tree.');
|
| -</script>
|
| -<svg>
|
| - <g id="a">
|
| - <image href="" onerror="window.targets.push(event.target);">
|
| - </g>
|
| - <use href="#a">
|
| -</svg>
|
|
|