diff options
author | enne@chromium.org <enne@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-03-28 20:23:28 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-03-28 20:23:28 +0000 |
commit | 340e002a5bb45c8474f74c94180f5330da404c5f (patch) | |
tree | 9b281ae8b7655c9faf9bde61d386f77b64149257 /third_party/WebKit/LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash.html | |
parent | 8f037e71f858a1bb67b9fc36b6af56de93d720c6 (diff) | |
download | chromium_src-340e002a5bb45c8474f74c94180f5330da404c5f.zip chromium_src-340e002a5bb45c8474f74c94180f5330da404c5f.tar.gz chromium_src-340e002a5bb45c8474f74c94180f5330da404c5f.tar.bz2 |
Remove carriage returns from LayoutTests (02)
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/217053008
git-svn-id: svn://svn.chromium.org/blink/trunk@170361 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash.html | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash.html b/third_party/WebKit/LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash.html index 8918057..14d7998 100644 --- a/third_party/WebKit/LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash.html +++ b/third_party/WebKit/LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash.html @@ -1,27 +1,27 @@ -<style>
- .c2:after { float: left; content: "A"; }
-</style>
-PASS, if the script does not cause a crash or ASSERT failure
-<script>
- function endTest(childSpan) {
- childSpan.appendChild(divToInsert);
- if (window.testRunner)
- testRunner.notifyDone();
- }
- function startTest() {
- quoteNode = document.createElement('q');
- document.documentElement.appendChild(quoteNode);
- divToInsert = document.createElement('div');
- parentSpan = document.createElement('span');
- parentSpan.setAttribute('class', 'c2');
- childSpan = document.createElement('span');
- parentSpan.appendChild(childSpan);
- document.documentElement.appendChild(parentSpan);
- setTimeout('endTest(childSpan);', 50);
- if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.dumpAsText();
- }
- }
- window.onload = startTest;
-</script>
+<style> + .c2:after { float: left; content: "A"; } +</style> +PASS, if the script does not cause a crash or ASSERT failure +<script> + function endTest(childSpan) { + childSpan.appendChild(divToInsert); + if (window.testRunner) + testRunner.notifyDone(); + } + function startTest() { + quoteNode = document.createElement('q'); + document.documentElement.appendChild(quoteNode); + divToInsert = document.createElement('div'); + parentSpan = document.createElement('span'); + parentSpan.setAttribute('class', 'c2'); + childSpan = document.createElement('span'); + parentSpan.appendChild(childSpan); + document.documentElement.appendChild(parentSpan); + setTimeout('endTest(childSpan);', 50); + if (window.testRunner) { + testRunner.waitUntilDone(); + testRunner.dumpAsText(); + } + } + window.onload = startTest; +</script> |