summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordglazkov@chromium.org <dglazkov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-16 23:59:19 +0000
committerdglazkov@chromium.org <dglazkov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-16 23:59:19 +0000
commit24f2a2343f243863c13385d061048ee71d4896d5 (patch)
treed00c8348210a1570f01c829edcd1fb8d129a9c52
parentd59abc85105e4d3ee55dcd58910774ead53cf77f (diff)
downloadchromium_src-24f2a2343f243863c13385d061048ee71d4896d5.zip
chromium_src-24f2a2343f243863c13385d061048ee71d4896d5.tar.gz
chromium_src-24f2a2343f243863c13385d061048ee71d4896d5.tar.bz2
Add Linux-specific baseline for the URL decomposition test.
TBR=erikkay TEST=none BUG=27548 Review URL: http://codereview.chromium.org/397021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32124 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search-expected.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search-expected.txt
new file mode 100644
index 0000000..b74641f
--- /dev/null
+++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search-expected.txt
@@ -0,0 +1,22 @@
+Test setting the search attribute of the URL in HTMLAnchorElement .
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+Set search without '?'
+PASS a.href is 'https://www.mydomain.com/path/?value=key'
+Set search that starts with '?' and contains spaces
+PASS a.href is 'https://www.mydomain.com/path/?val%20ue=%20key?'
+Set search to a malformed URL
+FAIL a.href should be s:www.mydomain.com/path/?%. Was s:www.mydomain.com/path/.
+Set search containing '#'
+PASS a.href is 'https://www.mydomain.com/path/?value%23key#hash'
+Set search to a malformed URL
+FAIL a.href should be bad:/|/url?value=key. Was bad:/|/url.
+Set search to null
+PASS a.href is 'https://www.mydomain.com/path/'
+Set search to empty string
+PASS a.href is 'https://www.mydomain.com/path/?'
+PASS successfullyParsed is true
+
+TEST COMPLETE