Title: [138637] trunk/LayoutTests
Revision
138637
Author
[email protected]
Date
2013-01-02 12:48:33 -0800 (Wed, 02 Jan 2013)

Log Message

View source mode is missing the processing instruction line.
https://bugs.webkit.org/show_bug.cgi?id=15961

Reviewed by Adam Barth.

Add a test for XML documents shown in viewsource mode. The bug
with the missing processing instruction line was fixed long
ago with the HTML5 parser rewrite so this just adds a test.

* fast/frames/viewsource-xml-expected.txt: Added.
* fast/frames/viewsource-xml.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (138636 => 138637)


--- trunk/LayoutTests/ChangeLog	2013-01-02 20:40:42 UTC (rev 138636)
+++ trunk/LayoutTests/ChangeLog	2013-01-02 20:48:33 UTC (rev 138637)
@@ -1,5 +1,19 @@
 2013-01-02  Elliott Sprehn  <[email protected]>
 
+        View source mode is missing the processing instruction line.
+        https://bugs.webkit.org/show_bug.cgi?id=15961
+
+        Reviewed by Adam Barth.
+
+        Add a test for XML documents shown in viewsource mode. The bug
+        with the missing processing instruction line was fixed long
+        ago with the HTML5 parser rewrite so this just adds a test.
+
+        * fast/frames/viewsource-xml-expected.txt: Added.
+        * fast/frames/viewsource-xml.html: Added.
+
+2013-01-02  Elliott Sprehn  <[email protected]>
+
         Transitions and animations do not apply to CSS ::before and ::after pseudo-elements
         https://bugs.webkit.org/show_bug.cgi?id=92591
 

Added: trunk/LayoutTests/fast/frames/viewsource-xml-expected.txt (0 => 138637)


--- trunk/LayoutTests/fast/frames/viewsource-xml-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/fast/frames/viewsource-xml-expected.txt	2013-01-02 20:48:33 UTC (rev 138637)
@@ -0,0 +1,6 @@
+
+
+--------
+Frame: '<!--framePath //<!--frame0-->-->'
+--------
+<?xml version="1.0"?><div><section/></div>

Added: trunk/LayoutTests/fast/frames/viewsource-xml.html (0 => 138637)


--- trunk/LayoutTests/fast/frames/viewsource-xml.html	                        (rev 0)
+++ trunk/LayoutTests/fast/frames/viewsource-xml.html	2013-01-02 20:48:33 UTC (rev 138637)
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+
+<script>
+if (window.testRunner) {
+    testRunner.dumpAsText();
+    testRunner.dumpChildFramesAsText();
+}
+</script>
+
+<iframe viewsource src=''></iframe>
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to