Changeset 211334 in webkit
- Timestamp:
- Jan 28, 2017, 4:04:43 AM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r211332 r211334 1 2017-01-28 Antti Koivisto <antti@apple.com> 2 3 Give scripts 'high' load priority 4 https://bugs.webkit.org/show_bug.cgi?id=167550 5 6 Reviewed by Andreas Kling. 7 8 For historical reasons it is currently 'medium', same as web fonts and some other non-parsing blocking things. 9 10 * loader/cache/CachedResource.cpp: 11 (WebCore::CachedResource::defaultPriorityForResourceType): 12 1 13 2017-01-28 Joseph Pecoraro <pecoraro@apple.com> 2 14 -
trunk/Source/WebCore/loader/cache/CachedResource.cpp
r211288 r211334 71 71 return ResourceLoadPriority::VeryHigh; 72 72 case CachedResource::CSSStyleSheet: 73 case CachedResource::Script: 73 74 return ResourceLoadPriority::High; 74 case CachedResource::Script:75 75 #if ENABLE(SVG_FONTS) 76 76 case CachedResource::SVGFontResource:
Note:
See TracChangeset
for help on using the changeset viewer.