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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/stylesheet-tracking-restart.html

Issue 2951643002: [DevTools] Prepare inspector-protocol tests to new test runner (Closed)
Patch Set: css3/fonts Created 3 years, 6 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript" src="../http/tests/inspector-protocol/inspector-p rotocol-test.js"></script> 3 <script type="text/javascript" src="../http/tests/inspector-protocol/resources/i nspector-protocol-test.js"></script>
4 <script> 4 <script>
5 var styleElement1; 5 var styleElement1;
6 var styleElement2; 6 var styleElement2;
7 7
8 function createStyleSheet(textContent) 8 function createStyleSheet(textContent)
9 { 9 {
10 var styleElement = document.createElement("style"); 10 var styleElement = document.createElement("style");
11 styleElement.textContent = textContent; 11 styleElement.textContent = textContent;
12 document.head.appendChild(styleElement); 12 document.head.appendChild(styleElement);
13 return styleElement; 13 return styleElement;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 callback(); 102 callback();
103 } 103 }
104 } 104 }
105 } 105 }
106 </script> 106 </script>
107 </head> 107 </head>
108 <body onload="openWebInspector()"> 108 <body onload="openWebInspector()">
109 <p>This test checks that if style sheet is removed between two inspector launche s it is not reported to frontend.</p> 109 <p>This test checks that if style sheet is removed between two inspector launche s it is not reported to frontend.</p>
110 </body> 110 </body>
111 </html> 111 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698