Commit 8ca0a889 authored by enrica@apple.com's avatar enrica@apple.com

Fixing for failing test on qt.

https://bugs.webkit.org/show_bug.cgi?id=34148
        
Reviewed by Jon Honeycutt.

Changed url in anchor tag to avoid the additional trailing slash.

* editing/pasteboard/paste-noscript-xhtml-expected.txt:
* editing/resources/htmlcontent.html:



git-svn-id: svn://svn.chromium.org/blink/trunk@53873 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent ab45f00a
2010-01-26 Enrica Casucci <enrica@apple.com>
Reviewed by Jon Honeycutt.
Fixing for failing test on qt.
https://bugs.webkit.org/show_bug.cgi?id=34148
Changed url in anchor tag to avoid the additional trailing slash.
* editing/pasteboard/paste-noscript-xhtml-expected.txt:
* editing/resources/htmlcontent.html:
2010-01-26 Dmitry Titov <dimich@chromium.org>
Reviewed by David Levin.
......@@ -4,4 +4,4 @@ This test copies the content of an iframe and pastes it in an editable area in a
HelloCNNHello
This is a form
<button xmlns="http://www.w3.org/1999/xhtml" id="button1" style="width: 100px; ">Hello</button><a xmlns="http://www.w3.org/1999/xhtml" id="anchor1" href="http://www.cnn.com/">CNN</a><a xmlns="http://www.w3.org/1999/xhtml" id="anchor2">Hello</a><iframe xmlns="http://www.w3.org/1999/xhtml" id="iframe1" style="width: 200px; height: 100px; background-color: rgb(204, 238, 238); "></iframe><form xmlns="http://www.w3.org/1999/xhtml" id="form1" style="width: 200px; height: 150px; background-color: rgb(204, 238, 238); ">This is a form</form>
<button xmlns="http://www.w3.org/1999/xhtml" id="button1" style="width: 100px; ">Hello</button><a xmlns="http://www.w3.org/1999/xhtml" id="anchor1" href="http://www.bing.com/search?q=cnn">CNN</a><a xmlns="http://www.w3.org/1999/xhtml" id="anchor2">Hello</a><iframe xmlns="http://www.w3.org/1999/xhtml" id="iframe1" style="width: 200px; height: 100px; background-color: rgb(204, 238, 238); "></iframe><form xmlns="http://www.w3.org/1999/xhtml" id="form1" style="width: 200px; height: 150px; background-color: rgb(204, 238, 238); ">This is a form</form>
......@@ -7,7 +7,7 @@ if (window.layoutTestController)
layoutTestController.dumpAsText();
</script>
<body>
<button id="button1" onclick="sayHello()" ondblclick="sayHello()" style="width: 100px;">Hello</button><a id="anchor1" href="http://www.cnn.com">CNN</a><a id="anchor2" href="javascript:sayHello()">Hello</a>
<button id="button1" onclick="sayHello()" ondblclick="sayHello()" style="width: 100px;">Hello</button><a id="anchor1" href="http://www.bing.com/search?q=cnn">CNN</a><a id="anchor2" href="javascript:sayHello()">Hello</a>
<script style="display: block; position: fixed; top: 4000px">alert('hello');</script>
<script src="../editing.js" style="display: block; position: fixed; top: 4000px"></script>
<iframe id="iframe1" src="javascript:sayHello()" style="width: 200px; height: 100px; background-color:#cee;"></iframe>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment