Index: third_party/WebKit/LayoutTests/svg/transforms/transform-boxsize-usecounter-no-trigger-2.html |
diff --git a/third_party/WebKit/LayoutTests/svg/transforms/transform-boxsize-usecounter-no-trigger-2.html b/third_party/WebKit/LayoutTests/svg/transforms/transform-boxsize-usecounter-no-trigger-2.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b089061daab6bc7ced4cc437cb4fa62a697672cb |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/svg/transforms/transform-boxsize-usecounter-no-trigger-2.html |
@@ -0,0 +1,22 @@ |
+<!DOCTYPE html> |
+<title>SVG transform: use counter does not trigger for translations</title> |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
+<style> |
+rect { |
+ transform-origin: 50% 50%; |
+ transform: translate(100, 100); |
+} |
+</style> |
+<svg> |
+ <rect width="100" height="100" fill="green"/> |
+</svg> |
+<script> |
+// From UseCounter.h |
+const TransformUsesBoxSizeOnSVG = 1842; |
+ |
+test(function() { |
+ document.querySelector('rect').getBoundingClientRect(); |
+ assert_false(internals.isUseCounted(document, TransformUsesBoxSizeOnSVG)); |
+}); |
+</script> |