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

Side by Side Diff: LayoutTests/fast/css/selector-text-escape.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5 <title>Bug 34529 - [CSSOM] issues with cssText and selectorText</title> 5 <title>Bug 34529 - [CSSOM] issues with cssText and selectorText</title>
6 <style type="text/css"> 6 <style type="text/css">
7 /* Control characters */ 7 /* Control characters */
8 .\01_class { 8 .\01_class {
9 color:green; 9 color:green;
10 } 10 }
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 "#a\\.external\\:visited", 102 "#a\\.external\\:visited",
103 'li[myattr="my\\"value\\\\"]' 103 'li[myattr="my\\"value\\\\"]'
104 ]; 104 ];
105 105
106 var rules = document.styleSheets[0].cssRules; 106 var rules = document.styleSheets[0].cssRules;
107 for (var i = 0; i < expectedTexts.length; i++) { 107 for (var i = 0; i < expectedTexts.length; i++) {
108 shouldBe("rules[" + i + "].selectorText", "expectedTexts[" + i + "]"); 108 shouldBe("rules[" + i + "].selectorText", "expectedTexts[" + i + "]");
109 shouldBe("rules[" + i + "].cssText", "expectedTexts[" + i + "] + ' { color: green; }'"); 109 shouldBe("rules[" + i + "].cssText", "expectedTexts[" + i + "] + ' { color: green; }'");
110 } 110 }
111 </script> 111 </script>
112 <script src="../js/resources/js-test-post.js"></script>
113 </body> 112 </body>
114 </html> 113 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/script-tests/TEMPLATE.html ('k') | LayoutTests/fast/css/shorthand-mismatched-list-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698