summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/613433-3.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/613433-3.html')
-rw-r--r--layout/reftests/bugs/613433-3.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/bugs/613433-3.html b/layout/reftests/bugs/613433-3.html
new file mode 100644
index 0000000000..129419b781
--- /dev/null
+++ b/layout/reftests/bugs/613433-3.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <head>
+ <style>
+ div {
+ min-height: 36px;
+ overflow: auto;
+ }
+ </style>
+ <script>
+ function test() {
+ document.querySelector("div").focus();
+ }
+ function focusTriggered() {
+ document.documentElement.removeAttribute("class");
+ }
+ </script>
+ </head>
+ <body onload="test()">
+ <div contenteditable onfocus="focusTriggered()"></div>
+ </body>
+</html>