summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/button/dynamic-text-indent.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/forms/button/dynamic-text-indent.html')
-rw-r--r--layout/reftests/forms/button/dynamic-text-indent.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/layout/reftests/forms/button/dynamic-text-indent.html b/layout/reftests/forms/button/dynamic-text-indent.html
new file mode 100644
index 0000000000..9b0724ed51
--- /dev/null
+++ b/layout/reftests/forms/button/dynamic-text-indent.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <button>Some text</button>
+ <script>
+ onload = function() {
+ var obj = document.querySelector("button");
+ window.w = obj.getBoundingClientRect().width;
+ obj.style.textIndent = "50px";
+ document.documentElement.className = "";
+ }
+ </script>
+</html>