Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: LayoutTests/fast/css/giant-stylesheet-crash.html

Issue 46063006: CRLF -> LF in giant-stylesheet-crash.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/giant-stylesheet-crash.html
diff --git a/LayoutTests/fast/css/giant-stylesheet-crash.html b/LayoutTests/fast/css/giant-stylesheet-crash.html
index 0a62f0d603c3dcf878d58008182046f941a7eed1..b450a88fc6cea0618457f914306733fe258df985 100644
--- a/LayoutTests/fast/css/giant-stylesheet-crash.html
+++ b/LayoutTests/fast/css/giant-stylesheet-crash.html
@@ -1,25 +1,25 @@
-<head>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-</script>
-
-<script>
-var styleElement = document.createElement('style');
-styleElement.setAttribute('type', 'text/css');
-
-var str="z";
-for (var i = 0; i < 16; i++) {
- str += str;
-}
-for (var i = 0; i < 1+(1<<16); i++){
- var txt = document.createTextNode(str);
- styleElement.appendChild(txt);
-}
-
-document.getElementsByTagName('head')[0].appendChild(styleElement);
-</script>
-</head>
-<body>
-This test verifies that creating a huge inline stylesheet doesn't crash.
-</body>
+<head>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+
+<script>
+var styleElement = document.createElement('style');
+styleElement.setAttribute('type', 'text/css');
+
+var str="z";
+for (var i = 0; i < 16; i++) {
+ str += str;
+}
+for (var i = 0; i < 1+(1<<16); i++){
+ var txt = document.createTextNode(str);
+ styleElement.appendChild(txt);
+}
+
+document.getElementsByTagName('head')[0].appendChild(styleElement);
+</script>
+</head>
+<body>
+This test verifies that creating a huge inline stylesheet doesn't crash.
+</body>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698