[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
dpranke at chromium.org
dpranke at chromium.org
Wed Mar 17 17:59:57 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 9ee76a470f881f7486e80eb52575bc06a9354efa
Author: dpranke at chromium.org <dpranke at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Feb 26 00:55:26 2010 +0000
2010-02-25 Dirk Pranke <dpranke at chromium.org>
Reviewed by Eric Seidel.
Test whether or not we preserve the hash fragments for "about:blank"
URLs. (Note that currently WebKit passes this but Chromium doesn't).
https://bugs.webkit.org/show_bug.cgi?id=35399
* fast/loader/about-blank-hash-kept-expected.txt: Added.
* fast/loader/about-blank-hash-kept.html: Added.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55265 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 51a3680..7e5e3d8 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-02-25 Dirk Pranke <dpranke at chromium.org>
+
+ Reviewed by Eric Seidel.
+
+ Test whether or not we preserve the hash fragments for "about:blank"
+ URLs. (Note that currently WebKit passes this but Chromium doesn't).
+
+ https://bugs.webkit.org/show_bug.cgi?id=35399
+
+ * fast/loader/about-blank-hash-kept-expected.txt: Added.
+ * fast/loader/about-blank-hash-kept.html: Added.
+
2010-02-25 Enrica Casucci <enrica at apple.com>
Reviewed by Adele Peterson.
diff --git a/LayoutTests/fast/loader/about-blank-hash-kept-expected.txt b/LayoutTests/fast/loader/about-blank-hash-kept-expected.txt
new file mode 100644
index 0000000..98b1091
--- /dev/null
+++ b/LayoutTests/fast/loader/about-blank-hash-kept-expected.txt
@@ -0,0 +1,5 @@
+This test tests parsing of hash fragments in about:blank URLs (they should be preserved).
+
+See https://bugs.webkit.org/show_bug.cgi?id=35399.
+
+PASS
diff --git a/LayoutTests/fast/loader/about-blank-hash-kept.html b/LayoutTests/fast/loader/about-blank-hash-kept.html
new file mode 100644
index 0000000..1a82e2b
--- /dev/null
+++ b/LayoutTests/fast/loader/about-blank-hash-kept.html
@@ -0,0 +1,20 @@
+<p>This test tests parsing of hash fragments in about:blank URLs
+(they should be preserved).</p>
+<p>See <a href="https://bugs.webkit.org/show_bug.cgi?id=35399">
+https://bugs.webkit.org/show_bug.cgi?id=35399</a>.</p>
+<script>
+if (window.layoutTestController) {
+ layoutTestController.dumpAsText();
+}
+
+function onload_callback() {
+ var old_hash = inner.location.hash;
+ inner.location.hash = "hash-ref";
+ var new_hash = inner.location.hash;
+ var c = document.getElementById("content");
+ c.innerHTML = (new_hash == "#hash-ref") ? "PASS" : "FAIL";
+}
+</script>
+<div id="content">No callback</div>
+<iframe style="display:none" name=inner id=inner onload="onload_callback()"
+src="about:blank"></iframe>
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list