Title: [203308] trunk/LayoutTests
Revision
203308
Author
[email protected]
Date
2016-07-15 16:50:06 -0700 (Fri, 15 Jul 2016)

Log Message

Merge background parser Blink test case
https://bugs.webkit.org/show_bug.cgi?id=116503

Test case is from the Blink change (patch by <[email protected]>):
<https://chromium.googlesource.com/chromium/blink/+/3044d8c22b6ab5653fe572aad656ae1325725dc9>

* fast/css/background-parser-crash-expected.txt: Added.
* fast/css/background-parser-crash.html: Added.
* inspector/styles: Added.
* inspector/styles/background-parsing-crash-expected.txt: Added.
* inspector/styles/background-parsing-crash.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (203307 => 203308)


--- trunk/LayoutTests/ChangeLog	2016-07-15 23:25:35 UTC (rev 203307)
+++ trunk/LayoutTests/ChangeLog	2016-07-15 23:50:06 UTC (rev 203308)
@@ -1,5 +1,19 @@
 2016-07-15  Brent Fulgham  <[email protected]>
 
+        Merge background parser Blink test case
+        https://bugs.webkit.org/show_bug.cgi?id=116503
+
+        Test case is from the Blink change (patch by <[email protected]>):
+        <https://chromium.googlesource.com/chromium/blink/+/3044d8c22b6ab5653fe572aad656ae1325725dc9>
+
+        * fast/css/background-parser-crash-expected.txt: Added.
+        * fast/css/background-parser-crash.html: Added.
+        * inspector/styles: Added.
+        * inspector/styles/background-parsing-crash-expected.txt: Added.
+        * inspector/styles/background-parsing-crash.html: Added.
+
+2016-07-15  Brent Fulgham  <[email protected]>
+
         Merge First-letter Blink test case
         https://bugs.webkit.org/show_bug.cgi?id=123961
 

Added: trunk/LayoutTests/fast/css/background-parser-crash-expected.txt (0 => 203308)


--- trunk/LayoutTests/fast/css/background-parser-crash-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/fast/css/background-parser-crash-expected.txt	2016-07-15 23:50:06 UTC (rev 203308)
@@ -0,0 +1 @@
+This test passes if it doesn't ASSERT.

Added: trunk/LayoutTests/fast/css/background-parser-crash.html (0 => 203308)


--- trunk/LayoutTests/fast/css/background-parser-crash.html	                        (rev 0)
+++ trunk/LayoutTests/fast/css/background-parser-crash.html	2016-07-15 23:50:06 UTC (rev 203308)
@@ -0,0 +1,20 @@
+<html>
+<head>
+<style>
+.absent {
+    background: #fff url(foo.png) no-repeat left 4px;
+}
+body {
+    background: #fff;
+}
+</style>
+<script>
+if (window.testRunner)
+    window.testRunner.dumpAsText();
+document.styleSheets[0].rules[1].style.background;
+</script>
+</head>
+<body>
+This test passes if it doesn't ASSERT.
+</body>
+</html>
\ No newline at end of file

Added: trunk/LayoutTests/inspector/styles/background-parsing-crash-expected.txt (0 => 203308)


--- trunk/LayoutTests/inspector/styles/background-parsing-crash-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/inspector/styles/background-parsing-crash-expected.txt	2016-07-15 23:50:06 UTC (rev 203308)
@@ -0,0 +1 @@
+This test passes if it doesn't ASSERT.

Added: trunk/LayoutTests/inspector/styles/background-parsing-crash.html (0 => 203308)


--- trunk/LayoutTests/inspector/styles/background-parsing-crash.html	                        (rev 0)
+++ trunk/LayoutTests/inspector/styles/background-parsing-crash.html	2016-07-15 23:50:06 UTC (rev 203308)
@@ -0,0 +1,22 @@
+<html>
+<head>
+<style>
+.absent {
+    background: #fff url(foo.png) no-repeat left 4px;
+}
+body {
+    background: #fff;
+}
+</style>
+<script src=""
+<script>
+function test()
+{
+    InspectorTest.completeTest();
+}
+</script>
+</head>
+<body _onload_="runTest()">
+This test passes if it doesn't ASSERT.
+</body>
+</html>
\ No newline at end of file
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to