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

Unified Diff: ManualTests/forms/date-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 | « ManualTests/forms/color-suggestion-picker.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/forms/date-suggestion-picker.html
diff --git a/ManualTests/forms/date-suggestion-picker.html b/ManualTests/forms/date-suggestion-picker.html
index 261a296eea84ab8e2815344b1d7bbaacfa9b3b7f..9e9ec9994953e14f5d1177850edb09478ecfb91b 100644
--- a/ManualTests/forms/date-suggestion-picker.html
+++ b/ManualTests/forms/date-suggestion-picker.html
@@ -194,32 +194,28 @@ function openCalendar(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 commonChromiumCssLink = doc.createElement('link');
- commonChromiumCssLink.rel = 'stylesheet';
- commonChromiumCssLink.href = '../../Source/WebCore/Resources/pagepopups/chromium/pickerCommonChromium.css?' + (new Date()).getTime();
- doc.head.appendChild(commonChromiumCssLink);
+ var buttonCssLink = doc.createElement('link');
+ buttonCssLink.rel = 'stylesheet';
+ buttonCssLink.href = '../../Source/web/resources/pickerButton.css?' + (new Date()).getTime();
+ doc.head.appendChild(buttonCssLink);
var suggestionPickerCssLink = doc.createElement('link');
suggestionPickerCssLink.rel = 'stylesheet';
- suggestionPickerCssLink.href = '../../Source/WebCore/Resources/pagepopups/suggestionPicker.css?' + (new Date()).getTime();
+ suggestionPickerCssLink.href = '../../Source/web/resources/suggestionPicker.css?' + (new Date()).getTime();
doc.head.appendChild(suggestionPickerCssLink);
var link = doc.createElement('link');
link.rel = 'stylesheet';
- link.href = '../../Source/WebCore/Resources/pagepopups/calendarPicker.css?' + (new Date()).getTime();
+ link.href = '../../Source/web/resources/calendarPicker.css?' + (new Date()).getTime();
doc.head.appendChild(link);
- var calendarPickerChromiumCssLink = doc.createElement('link');
- calendarPickerChromiumCssLink.rel = 'stylesheet';
- calendarPickerChromiumCssLink.href = '../../Source/WebCore/Resources/pagepopups/chromium/calendarPickerChromium.css?' + (new Date()).getTime();
- doc.head.appendChild(calendarPickerChromiumCssLink);
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 suggestionPickerJsScript = doc.createElement('script');
- suggestionPickerJsScript.src = '../../Source/WebCore/Resources/pagepopups/suggestionPicker.js?' + (new Date()).getTime();
+ suggestionPickerJsScript.src = '../../Source/web/resources/suggestionPicker.js?' + (new Date()).getTime();
doc.body.appendChild(suggestionPickerJsScript);
var script = doc.createElement('script');
- script.src = '../../Source/WebCore/Resources/pagepopups/calendarPicker.js?' + (new Date()).getTime();
+ script.src = '../../Source/web/resources/calendarPicker.js?' + (new Date()).getTime();
doc.body.appendChild(script);
var pagePopupController = {
« no previous file with comments | « ManualTests/forms/color-suggestion-picker.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698