Changeset 287752 in webkit
- Timestamp:
- Jan 7, 2022, 9:27:19 AM (5 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
inspector/audit/run-resources.html (modified) (1 diff)
-
platform/gtk/TestExpectations (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r287742 r287752 1 2022-01-07 Diego Pino Garcia <dpino@igalia.com> 2 3 [GTK] Regression in inspector/audit/run-resources.html 4 https://bugs.webkit.org/show_bug.cgi?id=196196 5 6 Reviewed by Chris Lord. 7 8 Fix JavaScript file MIME type check by comparing to 'text/javascript' or 'application/javascript'. 9 10 * inspector/audit/run-resources.html: 11 * platform/gtk/TestExpectations: 12 1 13 2022-01-07 Martin Robinson <mrobinson@webkit.org> 2 14 -
trunk/LayoutTests/inspector/audit/run-resources.html
r266317 r287752 55 55 if (resource.url.endsWith("sample-resource.js")) { 56 56 InspectorTest.log("Found sample-resource.js."); 57 InspectorTest.assert(resource.mimeType === "text/javascript" , "sample-resource.js should have a text/javascriptMIME type.");57 InspectorTest.assert(resource.mimeType === "text/javascript" || resource.mimeType === "application/javascript", "sample-resource.js should have a valid MIME type."); 58 58 59 59 let content = await getContentForResource(resource); -
trunk/LayoutTests/platform/gtk/TestExpectations
r287599 r287752 1860 1860 webkit.org/b/196061 editing/pasteboard/smart-paste-paragraph-002.html [ Failure ] 1861 1861 webkit.org/b/196061 editing/pasteboard/smart-paste-paragraph-004.html [ Failure ] 1862 1863 webkit.org/b/196196 inspector/audit/run-resources.html [ Failure ]1864 1862 1865 1863 webkit.org/b/196197 http/wpt/cache-storage/cache-quota-after-restart.any.html [ Failure ]
Note:
See TracChangeset
for help on using the changeset viewer.