Index: third_party/WebKit/LayoutTests/fast/lists/remove-listmarker-and-make-anonblock-empty-2.html |
diff --git a/third_party/WebKit/LayoutTests/fast/lists/remove-listmarker-and-make-anonblock-empty-2.html b/third_party/WebKit/LayoutTests/fast/lists/remove-listmarker-and-make-anonblock-empty-2.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1f2f787eee8add6f27d6f2658ea76c4f59d14ff0 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/lists/remove-listmarker-and-make-anonblock-empty-2.html |
@@ -0,0 +1,12 @@ |
+<!DOCTYPE html> |
+<i id='test'>crbug.com/602271: Test passes if it does not crash.<table><td></i> |
+<script> |
+ if (window.testRunner) |
+ testRunner.dumpAsText(); |
+ document.designMode = 'on'; |
+ document.execCommand("selectAll"); |
+ document.execCommand("InsertUnorderedList"); |
+ document.execCommand("InsertHTML",false,"<div></div><iframe></iframe>"); |
+ document.execCommand("selectAll"); |
+ document.execCommand("insertUnorderedList"); |
+</script> |