Changeset 223433 in webkit
- Timestamp:
- Oct 16, 2017, 1:36:18 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r223432 r223433 1 2017-10-16 Youenn Fablet <youenn@apple.com> 2 3 Activate Cache API by default 4 https://bugs.webkit.org/show_bug.cgi?id=178186 5 6 Reviewed by Chris Dumez. 7 8 * Shared/WebPreferencesDefinitions.h: 9 1 10 2017-10-16 Sam Weinig <sam@webkit.org> 2 11 -
trunk/Source/WebKit/Shared/WebPreferencesDefinitions.h
r223432 r223433 375 375 #define FOR_EACH_WEBKIT_EXPERIMENTAL_FEATURE_PREFERENCE(macro) \ 376 376 macro(AsyncFrameScrollingEnabled, asyncFrameScrollingEnabled, Bool, bool, false, "Async Frame Scrolling", "Perform frame scrolling in a dedicated thread or process") \ 377 macro(CacheAPIEnabled, cacheAPIEnabled, Bool, bool, false, "Cache API", "Enable Cache API") \377 macro(CacheAPIEnabled, cacheAPIEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Cache API", "Enable Cache API") \ 378 378 macro(ConstantPropertiesEnabled, constantPropertiesEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Constant Properties", "Enable CSS constant() properties") \ 379 379 macro(DisplayContentsEnabled, displayContentsEnabled, Bool, bool, false, "CSS display: contents", "Enable CSS display: contents support") \ -
trunk/Tools/ChangeLog
r223429 r223433 1 2017-10-16 Youenn Fablet <youenn@apple.com> 2 3 Activate Cache API by default 4 https://bugs.webkit.org/show_bug.cgi?id=178186 5 6 Reviewed by Chris Dumez. 7 8 Removing explicit activation of cache api. 9 10 * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp: 11 (WTR::InjectedBundle::beginTesting): 12 * WebKitTestRunner/InjectedBundle/TestRunner.cpp: 13 (WTR::TestRunner::setCacheAPIEnabled): Deleted. 14 * WebKitTestRunner/InjectedBundle/TestRunner.h: 15 1 16 2017-10-16 Ross Kirsling <ross.kirsling@sony.com> 2 17 -
trunk/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp
r223211 r223433 356 356 m_testRunner->setWebGPUEnabled(true); 357 357 358 m_testRunner->setCacheAPIEnabled(true);359 360 358 m_testRunner->setWritableStreamAPIEnabled(true); 361 359 m_testRunner->setReadableByteStreamAPIEnabled(true); -
trunk/Tools/WebKitTestRunner/InjectedBundle/TestRunner.cpp
r223299 r223433 400 400 } 401 401 402 void TestRunner::setCacheAPIEnabled(bool enabled)403 {404 WKRetainPtr<WKStringRef> key(AdoptWK, WKStringCreateWithUTF8CString("WebKitCacheAPIEnabled"));405 auto& injectedBundle = InjectedBundle::singleton();406 WKBundleOverrideBoolPreferenceForTestRunner(injectedBundle.bundle(), injectedBundle.pageGroup(), key.get(), enabled);407 }408 409 402 void TestRunner::setWritableStreamAPIEnabled(bool enabled) 410 403 { -
trunk/Tools/WebKitTestRunner/InjectedBundle/TestRunner.h
r223299 r223433 103 103 void setWebGL2Enabled(bool); 104 104 void setWebGPUEnabled(bool); 105 void setCacheAPIEnabled(bool);106 105 void setWritableStreamAPIEnabled(bool); 107 106 void setReadableByteStreamAPIEnabled(bool);
Note:
See TracChangeset
for help on using the changeset viewer.