Chromium Code Reviews| Index: LayoutTests/editing/style/justify-left-crash.html |
| diff --git a/LayoutTests/editing/style/justify-left-crash.html b/LayoutTests/editing/style/justify-left-crash.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a338af2bec8bb1246586014f6d3b947e240c643b |
| --- /dev/null |
| +++ b/LayoutTests/editing/style/justify-left-crash.html |
| @@ -0,0 +1,16 @@ |
| +<!DOCTYPE html> |
| +<html hidden> |
|
yosin_UTC9
2015/03/11 01:07:31
How about removing "hidden" attribute after execut
rwlbuis
2015/03/11 19:19:17
Clever! I did that in my latest patch set.
|
| +<head> |
| +<style> |
| +html, head, style { |
| + display: block; |
| +} |
| +</style> |
| +</head> |
| +<script> |
| + document.designMode = 'on'; |
| + document.execCommand("selectAll"); |
| + document.execCommand("italic"); |
| + document.execCommand("justifyLeft"); |
| +</script> |
| +</html> |