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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/extensions-ignore-cache.html

Issue 1867523002: Rename ignore_cache and ignoreCache to bypass* unless it affects API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 src="inspector-test.js"></script> 3 <script src="inspector-test.js"></script>
4 <script src="extensions-test.js"></script> 4 <script src="extensions-test.js"></script>
5 <script src="network/resources/random-script.php"></script> 5 <script src="network/resources/random-script.php"></script>
6 6
7 <script type="text/javascript"> 7 <script type="text/javascript">
8 8
9 // TODO(toyoshim): Probably keeping ignoreCache in this file as is will be
dgozman 2016/04/06 15:44:19 Correct.
Takashi Toyoshima 2016/04/08 04:50:54 Acknowledged.
10 // reasonable because this test DevTools protocol.
11
9 function extension_testIgnoreCache(nextTest) 12 function extension_testIgnoreCache(nextTest)
10 { 13 {
11 var beforeReload; 14 var beforeReload;
12 var afterReloadWithIgnoreCache; 15 var afterReloadWithIgnoreCache;
13 var afterNormalReload; 16 var afterNormalReload;
14 17
15 function onNormalReload() 18 function onNormalReload()
16 { 19 {
17 webInspector.inspectedWindow.eval("randomValue", function(value) { 20 webInspector.inspectedWindow.eval("randomValue", function(value) {
18 afterNormalReload = value; 21 afterNormalReload = value;
(...skipping 18 matching lines...) Expand all
37 webInspector.inspectedWindow.reload(); 40 webInspector.inspectedWindow.reload();
38 }); 41 });
39 } 42 }
40 43
41 </script> 44 </script>
42 </head> 45 </head>
43 <body onload="runTest()"> 46 <body onload="runTest()">
44 <p>Tests ignoreCache flag of WebInspector.inspectedPage.reload()</p> 47 <p>Tests ignoreCache flag of WebInspector.inspectedPage.reload()</p>
45 </body> 48 </body>
46 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698