| Index: LayoutTests/svg/repaint/add-border-property-on-root.html
|
| diff --git a/LayoutTests/svg/repaint/add-border-property-on-root.html b/LayoutTests/svg/repaint/add-border-property-on-root.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fbef4e195ac117f0f0b4ce7bdfdab6b923416108
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/repaint/add-border-property-on-root.html
|
| @@ -0,0 +1,18 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
|
| +<script>
|
| +window.testIsAsync = true;
|
| +window.onload = runRepaintTest;
|
| +
|
| +function repaintTest() {
|
| + setTimeout(function() {
|
| + requestAnimationFrame(function() {
|
| + document.querySelector('svg').style.border = "10px solid green";
|
| + if (window.testRunner)
|
| + finishRepaintTest();
|
| + });
|
| + }, 0);
|
| +};
|
| +</script>
|
| +<svg width="100" height="100" style="position: absolute">
|
| +</svg>
|
|
|