diff options
author | enne@chromium.org <enne@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-03-28 20:56:51 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-03-28 20:56:51 +0000 |
commit | f701a23ee27b4493bdb643db945491b5d2e7c536 (patch) | |
tree | 0a87dee8805dee0f394e24a7ffbb4b4f165ed146 /third_party/WebKit/LayoutTests/fast/parser/xhtml-innerhtml-null-byte-first.xhtml | |
parent | e1217adfdcd6c65b1848e8421157c8f62db0d005 (diff) | |
download | chromium_src-f701a23ee27b4493bdb643db945491b5d2e7c536.zip chromium_src-f701a23ee27b4493bdb643db945491b5d2e7c536.tar.gz chromium_src-f701a23ee27b4493bdb643db945491b5d2e7c536.tar.bz2 |
Remove carriage returns from LayoutTests (03)
Split up from https://codereview.chromium.org/211393005/
Generated via:
git grep -I -l $'\r'$ | grep -v gif$ | grep -v mhtml | head -n 100
TBR=eseidel@chromium.org
BUG=357373
Review URL: https://codereview.chromium.org/217473002
git-svn-id: svn://svn.chromium.org/blink/trunk@170365 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/parser/xhtml-innerhtml-null-byte-first.xhtml')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/parser/xhtml-innerhtml-null-byte-first.xhtml | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/parser/xhtml-innerhtml-null-byte-first.xhtml b/third_party/WebKit/LayoutTests/fast/parser/xhtml-innerhtml-null-byte-first.xhtml index 400a586..e17bc3d 100644 --- a/third_party/WebKit/LayoutTests/fast/parser/xhtml-innerhtml-null-byte-first.xhtml +++ b/third_party/WebKit/LayoutTests/fast/parser/xhtml-innerhtml-null-byte-first.xhtml @@ -1,22 +1,22 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/Strict.dtd">
-<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>XHTML innerHTML null byte test</title>
- <script><![CDATA[
- if (window.testRunner)
- testRunner.dumpAsText();
- ]]></script>
- </head>
- <body>
- <p id="p0">FAIL: No exception raised.</p>
- <script><![CDATA[
- try {
- document.getElementById("p0").innerHTML = "\x00FAIL: Nulls mishandled.";
- } catch(e) {
- document.getElementById("p0").innerHTML = "PASS: An exception was raised, no crashing.";
- if (e.code != DOMException.SYNTAX_ERR)
- console.log("Unexpected error thrown: " + e.name + ": " + e.message);
- }
- ]]></script>
- </body>
-</html>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/Strict.dtd"> +<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>XHTML innerHTML null byte test</title> + <script><![CDATA[ + if (window.testRunner) + testRunner.dumpAsText(); + ]]></script> + </head> + <body> + <p id="p0">FAIL: No exception raised.</p> + <script><![CDATA[ + try { + document.getElementById("p0").innerHTML = "\x00FAIL: Nulls mishandled."; + } catch(e) { + document.getElementById("p0").innerHTML = "PASS: An exception was raised, no crashing."; + if (e.code != DOMException.SYNTAX_ERR) + console.log("Unexpected error thrown: " + e.name + ": " + e.message); + } + ]]></script> + </body> +</html> |