summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/button/1349646.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/forms/button/1349646.html')
-rw-r--r--layout/reftests/forms/button/1349646.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/forms/button/1349646.html b/layout/reftests/forms/button/1349646.html
new file mode 100644
index 0000000000..a51c69a010
--- /dev/null
+++ b/layout/reftests/forms/button/1349646.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<style>
+button {
+ padding: 0px;
+ border:none;
+ font-size: 64px;
+ background-color: green;
+}
+button::-moz-focus-inner {
+ padding-inline-start: 20px;
+ padding-inline-end: 20px;
+}
+button:-moz-focusring::-moz-focus-inner {
+ border: 4px solid;
+}
+</style>
+<div>
+ <button id="button1"><span>Menu1</span></button>
+</div>
+<script>
+window.onload = () => {
+ button1.focus();
+ document.documentElement.classList.remove('reftest-wait');
+}
+</script>
+</html>