| Index: LayoutTests/svg/custom/add-outline-property-on-root.html
|
| diff --git a/LayoutTests/svg/custom/add-outline-property-on-root.html b/LayoutTests/svg/custom/add-outline-property-on-root.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..785cb190bd0cbb1b1023b22d0ade4c084bf60dde
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/custom/add-outline-property-on-root.html
|
| @@ -0,0 +1,18 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.waitUntilDone();
|
| +window.onload = function() {
|
| + setTimeout(function() {
|
| + requestAnimationFrame(function() {
|
| + document.querySelector('svg').style.outline = "10px solid green";
|
| + if (window.testRunner)
|
| + testRunner.notifyDone();
|
| + });
|
| + }, 0);
|
| +};
|
| +</script>
|
| +<svg width="100" height="100">
|
| + <rect width="100" height="100" fill="blue"/>
|
| +</svg>
|
| +
|
|
|