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

Unified Diff: ManualTests/forms/color-suggestion-picker.html

Issue 790103005: Fix resource paths in ManualTests/forms (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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 | ManualTests/forms/date-suggestion-picker.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/forms/color-suggestion-picker.html
diff --git a/ManualTests/forms/color-suggestion-picker.html b/ManualTests/forms/color-suggestion-picker.html
index 8934ae111959b352e8038a87c0627c6cca4892dd..87158624c812f123585de0feb06b85f85110a647 100644
--- a/ManualTests/forms/color-suggestion-picker.html
+++ b/ManualTests/forms/color-suggestion-picker.html
@@ -38,17 +38,17 @@ function openColorPicker(args) {
doc.documentElement.innerHTML = '<head></head><body><div id=main>Loading...</div></body>';
var commonCssLink = doc.createElement('link');
commonCssLink.rel = 'stylesheet';
- commonCssLink.href = '../../Source/WebCore/Resources/pagepopups/pickerCommon.css?' + (new Date()).getTime();
+ commonCssLink.href = '../../Source/web/resources/pickerCommon.css?' + (new Date()).getTime();
doc.head.appendChild(commonCssLink);
var link = doc.createElement('link');
link.rel = 'stylesheet';
- link.href = '../../Source/WebCore/Resources/pagepopups/colorSuggestionPicker.css?' + (new Date()).getTime();
+ link.href = '../../Source/web/resources/colorSuggestionPicker.css?' + (new Date()).getTime();
doc.head.appendChild(link);
var commonJsScript = doc.createElement('script');
- commonJsScript.src = '../../Source/WebCore/Resources/pagepopups/pickerCommon.js?' + (new Date()).getTime();
+ commonJsScript.src = '../../Source/web/resources/pickerCommon.js?' + (new Date()).getTime();
doc.body.appendChild(commonJsScript);
var script = doc.createElement('script');
- script.src = '../../Source/WebCore/Resources/pagepopups/colorSuggestionPicker.js?' + (new Date()).getTime();
+ script.src = '../../Source/web/resources/colorSuggestionPicker.js?' + (new Date()).getTime();
doc.body.appendChild(script);
var pagePopupController = {
« no previous file with comments | « no previous file | ManualTests/forms/date-suggestion-picker.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698