+2015-11-10 Jiewen Tan <jiewen_tan@apple.com>
+
+ Null dereference loading Blink layout test editing/execCommand/selectAll-including-marquee-crash.html
+ https://bugs.webkit.org/show_bug.cgi?id=149296
+ <rdar://problem/22746758>
+
+ Reviewed by Darin Adler.
+
+ Tests are from Blink r167617:
+ https://codereview.chromium.org/165933002
+ No source code changes are needed as they are covered by Bug 149298.
+
+ * editing/execCommand/selectAll-including-marquee-crash-expected.txt: Added.
+ * editing/execCommand/selectAll-including-marquee-crash.html: Added.
+
2015-11-10 Ryan Haddad <ryanhaddad@apple.com>
Broadening the scope of skipped inspector tests on Win
--- /dev/null
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+ marquee {
+ padding-bottom: 1px;
+ }
+</style>
+
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+
+function editingTest() {
+ document.designMode = "on";
+ document.execCommand("SelectAll");
+ document.execCommand("InsertHTML", false);
+ document.write("PASS. WebKit didn't crash.");
+};
+</script>
+</head>
+<body onload=editingTest()>
+ <marquee>
+ aa
+ <table></table>
+ </marquee>
+</body>
+</html>