Changeset 280922 in webkit
- Timestamp:
- Aug 11, 2021, 11:42:37 AM (5 years ago)
- Location:
- branches/safari-612.1.27.0-branch
- Files:
-
- 9 edited
-
LayoutTests/TestExpectations (modified) (1 diff)
-
LayoutTests/fast/dom/navigator-detached-no-crash-expected.txt (modified) (2 diffs)
-
LayoutTests/platform/mac-wk1/fast/dom/navigator-detached-no-crash-expected.txt (modified) (2 diffs)
-
LayoutTests/platform/mac-wk2/fast/dom/navigator-detached-no-crash-expected.txt (modified) (2 diffs)
-
LayoutTests/platform/mac/fast/dom/navigator-detached-no-crash-expected.txt (modified) (2 diffs)
-
LayoutTests/platform/wpe/fast/dom/navigator-detached-no-crash-expected.txt (modified) (2 diffs)
-
Source/WTF/wtf/PlatformEnableCocoa.h (modified) (1 diff)
-
Source/WebKit/Shared/WebPreferencesDefaultValues.cpp (modified) (1 diff)
-
Source/WebKitLegacy/mac/WebView/WebPreferencesDefaultValues.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-612.1.27.0-branch/LayoutTests/TestExpectations
r280510 r280922 5118 5118 webkit.org/b/227849 imported/w3c/web-platform-tests/css/css-overflow/parsing/scrollbar-gutter-invalid.html [ Skip ] 5119 5119 webkit.org/b/227849 imported/w3c/web-platform-tests/css/css-overflow/parsing/scrollbar-gutter-valid.html [ Skip ] 5120 5121 # Skipping for disabled feature flag for branch 5122 platform/wpe/http/wpt/webxr [ Skip ] 5123 platform/wpe/imported/w3c/web-platform-tests/webxr [ Skip ] 5124 platform/mac/imported/w3c/web-platform-tests/webxr [ Skip ] 5125 http/wpt/webxr [ Skip ] 5126 imported/w3c/web-platform-tests/webxr [ Skip ] 5127 webxr [ Skip ] 5128 -
branches/safari-612.1.27.0-branch/LayoutTests/fast/dom/navigator-detached-no-crash-expected.txt
r280467 r280922 30 30 navigator.vendorSub is OK 31 31 navigator.webdriver is OK 32 navigator.xr is OK33 32 navigator.appCodeName is OK 34 33 navigator.appName is OK … … 58 57 navigator.vendorSub is OK 59 58 navigator.webdriver is OK 60 navigator.xr is OK61 59 -
branches/safari-612.1.27.0-branch/LayoutTests/platform/mac-wk1/fast/dom/navigator-detached-no-crash-expected.txt
r277468 r280922 23 23 navigator.vendorSub is OK 24 24 navigator.webdriver is OK 25 navigator.xr is OK26 25 navigator.appCodeName is OK 27 26 navigator.appName is OK … … 46 45 navigator.vendorSub is OK 47 46 navigator.webdriver is OK 48 navigator.xr is OK49 47 -
branches/safari-612.1.27.0-branch/LayoutTests/platform/mac-wk2/fast/dom/navigator-detached-no-crash-expected.txt
r280467 r280922 33 33 navigator.vendorSub is OK 34 34 navigator.webdriver is OK 35 navigator.xr is OK36 35 navigator.appCodeName is OK 37 36 navigator.appName is OK … … 66 65 navigator.vendorSub is OK 67 66 navigator.webdriver is OK 68 navigator.xr is OK69 67 -
branches/safari-612.1.27.0-branch/LayoutTests/platform/mac/fast/dom/navigator-detached-no-crash-expected.txt
r277468 r280922 27 27 navigator.vendorSub is OK 28 28 navigator.webdriver is OK 29 navigator.xr is OK30 29 navigator.appCodeName is OK 31 30 navigator.appName is OK … … 53 52 navigator.vendorSub is OK 54 53 navigator.webdriver is OK 55 navigator.xr is OK56 54 -
branches/safari-612.1.27.0-branch/LayoutTests/platform/wpe/fast/dom/navigator-detached-no-crash-expected.txt
r267988 r280922 26 26 navigator.vendorSub is OK 27 27 navigator.webdriver is OK 28 navigator.xr is OK29 28 navigator.appCodeName is OK 30 29 navigator.appName is OK … … 52 51 navigator.vendorSub is OK 53 52 navigator.webdriver is OK 54 navigator.xr is OK55 53 -
branches/safari-612.1.27.0-branch/Source/WTF/wtf/PlatformEnableCocoa.h
r280558 r280922 629 629 630 630 #if !defined(ENABLE_WEBXR) 631 #define ENABLE_WEBXR 1631 #define ENABLE_WEBXR 0 632 632 #endif 633 633 -
branches/safari-612.1.27.0-branch/Source/WebKit/Shared/WebPreferencesDefaultValues.cpp
r280467 r280922 288 288 bool defaultWebXREnabled() 289 289 { 290 #if HAVE(WEBXR_INTERNALS) 291 return true; 292 #else 293 return false; 294 #endif 290 return false; 295 291 } 296 292 -
branches/safari-612.1.27.0-branch/Source/WebKitLegacy/mac/WebView/WebPreferencesDefaultValues.mm
r280467 r280922 80 80 bool defaultWebXREnabled() 81 81 { 82 #if HAVE(SYSTEM_FEATURE_FLAGS)83 return isFeatureFlagEnabled("WebXR");84 #endif85 86 82 return false; 87 83 }
Note:
See TracChangeset
for help on using the changeset viewer.