diff options
Diffstat (limited to 'layout/reftests/bugs/613433-1-ref.html')
-rw-r--r-- | layout/reftests/bugs/613433-1-ref.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/bugs/613433-1-ref.html b/layout/reftests/bugs/613433-1-ref.html new file mode 100644 index 0000000000..f4a2ab3b6f --- /dev/null +++ b/layout/reftests/bugs/613433-1-ref.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <head> + <style> + div { + min-height: 36px; + } + </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> |