summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-transitions/transitions-inline-already-wrapped-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-transitions/transitions-inline-already-wrapped-1.html')
-rw-r--r--layout/reftests/css-transitions/transitions-inline-already-wrapped-1.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/css-transitions/transitions-inline-already-wrapped-1.html b/layout/reftests/css-transitions/transitions-inline-already-wrapped-1.html
new file mode 100644
index 0000000000..f7533f6506
--- /dev/null
+++ b/layout/reftests/css-transitions/transitions-inline-already-wrapped-1.html
@@ -0,0 +1,23 @@
+<html class="reftest-wait">
+<title>Test for CSS transitions and re-wrapping of inlines</title>
+<style type="text/css">
+#test { transition: 5s color linear 200s; }
+</style>
+<script type="text/javascript">
+
+window.onload = run;
+
+function run() {
+ var test = document.getElementById("test");
+ var unused = test.offsetWidth;
+ test.style.color = "red";
+ unused = test.offsetWidth;
+ document.documentElement.removeAttribute("class");
+}
+
+</script>
+<div style="width: 3em">
+<span id="test" style="color: green">
+This is some text with a transition.
+</span>
+</div>