[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

abarth at webkit.org abarth at webkit.org
Wed Dec 22 12:21:38 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6ae5067ad0497012d0071d1edb112b27c7b44205
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 19 22:35:24 2010 +0000

    2010-08-19  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Alexey Proskuryakov.
    
            <style> inside <noscript> is parsed when JavaScript is enabled.
            https://bugs.webkit.org/show_bug.cgi?id=44021
    
            More random bugs fixed by the HTML5 parser.  Time to document with a
            couple tests.  I added both these tests because <noscript> in <body> is
            slightly different than <noscript> before <body>.
    
            * fast/parser/no-style-in-noscript-expected.txt: Added.
            * fast/parser/no-style-in-noscript-with-body-expected.txt: Added.
            * fast/parser/no-style-in-noscript-with-body.html: Added.
            * fast/parser/no-style-in-noscript.html: Added.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65712 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 3f03298..26c6cbd 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,19 @@
+2010-08-19  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Alexey Proskuryakov.
+
+        <style> inside <noscript> is parsed when JavaScript is enabled.
+        https://bugs.webkit.org/show_bug.cgi?id=44021
+
+        More random bugs fixed by the HTML5 parser.  Time to document with a
+        couple tests.  I added both these tests because <noscript> in <body> is
+        slightly different than <noscript> before <body>.
+
+        * fast/parser/no-style-in-noscript-expected.txt: Added.
+        * fast/parser/no-style-in-noscript-with-body-expected.txt: Added.
+        * fast/parser/no-style-in-noscript-with-body.html: Added.
+        * fast/parser/no-style-in-noscript.html: Added.
+
 2010-08-19  Sam Weinig  <sam at webkit.org>
 
         Rubber-stamped by Jon Honeycutt.
diff --git a/LayoutTests/editing/selection/5136696-expected.txt b/LayoutTests/fast/parser/no-style-in-noscript-expected.txt
similarity index 100%
copy from LayoutTests/editing/selection/5136696-expected.txt
copy to LayoutTests/fast/parser/no-style-in-noscript-expected.txt
diff --git a/LayoutTests/editing/selection/5136696-expected.txt b/LayoutTests/fast/parser/no-style-in-noscript-with-body-expected.txt
similarity index 100%
copy from LayoutTests/editing/selection/5136696-expected.txt
copy to LayoutTests/fast/parser/no-style-in-noscript-with-body-expected.txt
diff --git a/LayoutTests/fast/parser/no-style-in-noscript-with-body.html b/LayoutTests/fast/parser/no-style-in-noscript-with-body.html
new file mode 100644
index 0000000..90752fc
--- /dev/null
+++ b/LayoutTests/fast/parser/no-style-in-noscript-with-body.html
@@ -0,0 +1,11 @@
+<body>
+<noscript>
+<style type="text/css">
+#foo { display: none; }
+</style>
+</noscript>
+<script>
+if (window.layoutTestController)
+    layoutTestController.dumpAsText();
+</script>
+<div id="foo">PASS</div>
diff --git a/LayoutTests/fast/parser/no-style-in-noscript.html b/LayoutTests/fast/parser/no-style-in-noscript.html
new file mode 100644
index 0000000..b68e6ce
--- /dev/null
+++ b/LayoutTests/fast/parser/no-style-in-noscript.html
@@ -0,0 +1,10 @@
+<noscript>
+<style type="text/css">
+#foo { display: none; }
+</style>
+</noscript>
+<script>
+if (window.layoutTestController)
+    layoutTestController.dumpAsText();
+</script>
+<div id="foo">PASS</div>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list