Index: third_party/WebKit/LayoutTests/svg/text/removing-id-on-path.html |
diff --git a/third_party/WebKit/LayoutTests/svg/transforms/change-transform-to-none-shape.html b/third_party/WebKit/LayoutTests/svg/text/removing-id-on-path.html |
similarity index 52% |
copy from third_party/WebKit/LayoutTests/svg/transforms/change-transform-to-none-shape.html |
copy to third_party/WebKit/LayoutTests/svg/text/removing-id-on-path.html |
index bc8f608d3f60a3cfdc1ff8ec01eb99ea633c8781..73b4624ce3f825fdb9709d3eb88ecc1b59e666e6 100644 |
--- a/third_party/WebKit/LayoutTests/svg/transforms/change-transform-to-none-shape.html |
+++ b/third_party/WebKit/LayoutTests/svg/text/removing-id-on-path.html |
@@ -1,10 +1,11 @@ |
<!DOCTYPE html> |
-<script src="../../resources/run-after-layout-and-paint.js"></script> |
<svg> |
- <rect width="100" height="100" fill="green" style="transform: translate(100px, 100px)"/> |
+ <path id="path" d="M0,20h100" fill="none"/> |
+ <text><textPath xlink:href="#path">FAIL</textPath></text> |
</svg> |
+<script src="../../resources/run-after-layout-and-paint.js"></script> |
<script> |
runAfterLayoutAndPaint(function() { |
- document.querySelector('rect').style.transform = 'none'; |
+ document.querySelector('path').id = ''; |
}, true); |
</script> |