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