aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/css/css-transforms/transform-box/cssbox-stroke-box.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-transforms/transform-box/cssbox-stroke-box.html')
-rw-r--r--tests/wpt/web-platform-tests/css/css-transforms/transform-box/cssbox-stroke-box.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-transforms/transform-box/cssbox-stroke-box.html b/tests/wpt/web-platform-tests/css/css-transforms/transform-box/cssbox-stroke-box.html
new file mode 100644
index 00000000000..fd0db232155
--- /dev/null
+++ b/tests/wpt/web-platform-tests/css/css-transforms/transform-box/cssbox-stroke-box.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<title>transform-box: stroke-box (CSS layout)</title>
+<link rel="match" href="./reference/cssbox-ref.html">
+<link rel="help" href="https://drafts.csswg.org/css-transforms-1/#transform-box">
+<meta name="assert" content="This should display a square with a black bar at the top whose top-left corner is at 100,100."/>
+
+<style>
+#target {
+ width: 150px;
+ height: 200px;
+ margin-left: 300px;
+ margin-top: 100px;
+ background-color: green;
+ border-left: solid 50px black;
+
+ transform: rotate(90deg);
+ transform-origin: 0 0;
+ transform-box: stroke-box; /* alias for border-box */
+}
+</style>
+
+<div id="target"></div>
+
+<div id="error"></div>
+<script>
+var refStyle = "stroke-box";
+var compStyle = getComputedStyle(document.getElementById('target')).transformBox;
+if (refStyle != compStyle)
+ document.getElementById('error').textContent = "Error, got computed style " + compStyle;
+</script>