Chromium Code Reviews| Index: chrome/test/data/chrome_extension_resource.html |
| diff --git a/chrome/test/data/chrome_extension_resource.html b/chrome/test/data/chrome_extension_resource.html |
| index 3bc87723c2d24fc268852365900b81d7114340cd..9d84b7e5e58587654bf55776a95660a61bc5fca9 100644 |
| --- a/chrome/test/data/chrome_extension_resource.html |
| +++ b/chrome/test/data/chrome_extension_resource.html |
| @@ -2,17 +2,17 @@ |
| <head> |
| <script> |
| var xhrStatus = -1; |
| -var imgUrl = 'chrome-extension://eemcgdkfndhakfknompkggombfjjjeno/images/bookmark_manager_search.png'; |
| +var imgUrl = 'chrome-extension://ombfbiolafbecdcaofoilglhmobpdbnd/icon.png'; |
|
alexmos
2017/06/21 18:09:01
nit: maybe add a comment mentioning which extensio
calamity
2017/06/22 04:24:49
Done.
|
| window.onload = function() { |
| // The call to pushState with chrome-extension:// URL will succeed, since the |
| // test uses --disable-web-security. |
| history.pushState('', '', |
| - 'chrome-extension://eemcgdkfndhakfknompkggombfjjjeno/main.html'); |
| + 'chrome-extension://ombfbiolafbecdcaofoilglhmobpdbnd/'); |
| var xhr = new XMLHttpRequest(); |
| xhr.onreadystatechange = function() { |
| if (xhr.readyState == 4) { |
| - xhrStatus = xhr.status; |
| + xhrStatus = xhr.status; |
| if (xhrStatus == 200) { |
| document.getElementById('star').src = |
| window.URL.createObjectURL(this.response); |