diff options
Diffstat (limited to 'editor/reftests/dynamic-type-3.html')
-rw-r--r-- | editor/reftests/dynamic-type-3.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editor/reftests/dynamic-type-3.html b/editor/reftests/dynamic-type-3.html new file mode 100644 index 000000000..7cf5be6ab --- /dev/null +++ b/editor/reftests/dynamic-type-3.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<body> + <input type="checkbox" value="foo"> + <script> + var i = document.getElementsByTagName("input")[0]; + i.type = "text"; + i.value = "abcdef"; + </script> +</body> +</html> |