Changeset 188514 in webkit
- Timestamp:
- Aug 15, 2015, 1:13:24 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 5 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r188512 r188514 1 2015-08-15 Simon Fraser <simon.fraser@apple.com> 2 3 Have will-change create stacking context when necessary 4 https://bugs.webkit.org/show_bug.cgi?id=148060 5 6 Reviewed by Zalan Bujtas. 7 8 Ref test for will-change creating stacking context. 9 10 * fast/css/will-change/resources/will-change-stacking-helper.js: Added. 11 (makeStackingBlock): 12 * fast/css/will-change/will-change-creates-stacking-context-expected.html: Added. 13 * fast/css/will-change/will-change-creates-stacking-context.html: Added. 14 * platform/efl/TestExpectations: Mark image failure on EFL, since some CSS 15 properties in the test are disabled there. 16 1 17 2015-08-14 Simon Fraser <simon.fraser@apple.com> 2 18 -
trunk/LayoutTests/platform/efl/TestExpectations
r188390 r188514 404 404 # CSS image-resolution is not yet enabled. 405 405 webkit.org/b/85262 fast/css/image-resolution 406 407 # Some CSS properties not supported on EFL 408 fast/css/will-change/will-change-creates-stacking-context.html [ ImageOnlyFailure ] 406 409 407 410 # Perf tests are really slow in debug builds and there are few benefits in running them. -
trunk/LayoutTests/platform/mac-mavericks/TestExpectations
r188026 r188514 10 10 compositing/media-controls-bar-appearance.html [ Skip ] 11 11 compositing/media-controls-bar-appearance-big.html [ Skip ] 12 fast/css/will-change/will-change-creates-stacking-context.html [ ImageOnlyFailure ] 12 13 13 14 # No support for non-HLS Media Selection Group -
trunk/Source/WebCore/ChangeLog
r188513 r188514 1 2015-08-15 Simon Fraser <simon.fraser@apple.com> 2 3 Have will-change create stacking context when necessary 4 https://bugs.webkit.org/show_bug.cgi?id=148060 5 6 Reviewed by Zalan Bujtas. 7 8 If will-change includes a property whose non-initial value can create 9 stacking context, create stacking context for that element. 10 11 Test: fast/css/will-change/will-change-creates-stacking-context.html 12 13 * css/StyleResolver.cpp: 14 (WebCore::StyleResolver::adjustRenderStyle): 15 * rendering/style/RenderStyle.h: Add willChangeCreatesStackingContext(), 16 which on most cases is a fast, inlined 'return false'. Otherwise ask 17 the WillChangeData. 18 * rendering/style/WillChangeData.cpp: 19 (WebCore::propertyCreatesStackingContext): 20 (WebCore::WillChangeData::createsStackingContext): 21 * rendering/style/WillChangeData.h: 22 1 23 2015-08-15 Commit Queue <commit-queue@webkit.org> 2 24 -
trunk/Source/WebCore/css/StyleResolver.cpp
r187659 r188514 1270 1270 || (style.position() == FixedPosition && documentSettings() && documentSettings()->fixedPositionCreatesStackingContext()) 1271 1271 || style.hasFlowFrom() 1272 || style.willChangeCreatesStackingContext() 1272 1273 )) 1273 1274 style.setZIndex(0); -
trunk/Source/WebCore/rendering/style/RenderStyle.h
r188512 r188514 114 114 class StyleResolver; 115 115 class TransformationMatrix; 116 class WillChangeData;117 116 118 117 struct ScrollSnapPoints; … … 1803 1802 void setWillChange(PassRefPtr<WillChangeData>); 1804 1803 1804 bool willChangeCreatesStackingContext() const 1805 { 1806 if (!willChange()) 1807 return false; 1808 1809 return willChange()->createsStackingContext(); 1810 } 1811 1805 1812 const AtomicString& hyphenString() const; 1806 1813 -
trunk/Source/WebCore/rendering/style/WillChangeData.cpp
r188512 r188514 61 61 } 62 62 63 // "If any non-initial value of a property would create a stacking context on the element, 64 // specifying that property in will-change must create a stacking context on the element." 65 static bool propertyCreatesStackingContext(CSSPropertyID property) 66 { 67 switch (property) { 68 case CSSPropertyClipPath: 69 case CSSPropertyWebkitClipPath: 70 case CSSPropertyMask: 71 case CSSPropertyOpacity: 72 case CSSPropertyPosition: 73 case CSSPropertyZIndex: 74 case CSSPropertyWebkitBackfaceVisibility: 75 case CSSPropertyWebkitBoxReflect: 76 #if ENABLE(CSS_COMPOSITING) 77 case CSSPropertyMixBlendMode: 78 case CSSPropertyIsolation: 79 #endif 80 case CSSPropertyWebkitFilter: 81 #if ENABLE(FILTERS_LEVEL_2) 82 case CSSPropertyWebkitBackdropFilter: 83 #endif 84 case CSSPropertyWebkitMask: 85 case CSSPropertyWebkitMaskImage: 86 case CSSPropertyWebkitMaskBoxImage: 87 case CSSPropertyPerspective: 88 case CSSPropertyTransform: 89 case CSSPropertyTransformStyle: 90 case CSSPropertyWebkitTransformStyle: 91 #if ENABLE(CSS_REGIONS) 92 case CSSPropertyWebkitFlowFrom: 93 #endif 94 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING) 95 case CSSPropertyWebkitOverflowScrolling: 96 #endif 97 return true; 98 default: 99 return false; 100 } 101 } 102 103 bool WillChangeData::createsStackingContext() const 104 { 105 for (const auto& feature : m_animatableFeatures) { 106 if (feature.feature() == Property && propertyCreatesStackingContext(feature.property())) 107 return true; 108 } 109 return false; 110 } 111 63 112 void WillChangeData::addFeature(Feature feature, CSSPropertyID propertyID) 64 113 { -
trunk/Source/WebCore/rendering/style/WillChangeData.h
r188512 r188514 54 54 bool containsContents() const; 55 55 bool containsProperty(CSSPropertyID) const; 56 bool createsStackingContext() const; 56 57 57 58 enum Feature {
Note:
See TracChangeset
for help on using the changeset viewer.