diff options
Diffstat (limited to 'layout/reftests/bugs/542116-3.html')
-rw-r--r-- | layout/reftests/bugs/542116-3.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/bugs/542116-3.html b/layout/reftests/bugs/542116-3.html new file mode 100644 index 000000000..b2c935c7f --- /dev/null +++ b/layout/reftests/bugs/542116-3.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> + <head> + <style> + div { + margin: 0; + padding: 10px; + font-size: 40px; + height: 100px; + width: 100px; + border: 1px solid red; + outline: none; + } + </style> + </head> + <body onload="document.getElementById('i').focus()"> + <div contenteditable id="i"></div> + </body> +</html> |