Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Issue 82083002: Move viewport unit resolution to style recalc time (Closed)

Created:
7 years, 1 month ago by Timothy Loh
Modified:
6 years, 11 months ago
CC:
blink-reviews, shans, eae+blinkwatch, apavlov+blink_chromium.org, adamk+blink_chromium.org, pdr, Steve Block, rwlbuis, dino_apple.com, alancutter (OOO until 2018), bemjb+rendering_chromium.org, dstockwell, dglazkov+blink, jchaffraix+rendering, Eric Willigers, kenneth.christiansen, rjwright, zoltan1, krit, darktears, leviw+renderwatch, Mike Lawther (Google), f(malita), Stephen Chennney, Xianzhu
Base URL:
https://chromium.googlesource.com/chromium/blink@master
Visibility:
Public.

Description

Move viewport unit resolution to style recalc time This patch moves the resolution of viewport units to style recalc time. Currently viewport units are left unresolved during style recalcs which leads to several problems (see linked bugs). Moving the resolution will fix these problems, as well as reduce the plumbing that goes on. This patch is touches a lot of files since the valueForLength functions now no longer need a RenderView, but the interesting changes are in: - CSSToLengthConversionData -> CSSPrimitiveValue, for moving resolution to style recalc time - Length / LengthFunction, no longer needs to know about viewport units - FrameView -> Document -> MatchedPropertiesCache, for scheduling style recalcs upon resize Viewport Lengths are currently also used in viewport descriptions (that is, @viewport and the viewport meta tag). I've added to Length two more enum values (DeviceWidth and DeviceHeight), alongside ExtendToZoom. Note that getComputedStyle will now do the right thing and return pixel values when viewport units are used. This behaviour matches Firefox and the css3-cascade spec. I've added a test for the most starred bug (124331) and for the various other issues fixed by this patch I'll make test-only patches. Note that calc integration with viewport units will be fixed separately to simplify reviews. TBR=dglazkov@chromium.org BUG=124331, 137617, 125709, 261298, 173407, 322365, 310874, 311465 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=164448

Patch Set 1 #

Patch Set 2 : #

Total comments: 1

Patch Set 3 : rebased.. #

Total comments: 25

Patch Set 4 : clean up silly things in added test #

Patch Set 5 : address a few comments #

Patch Set 6 : rebased #

Patch Set 7 : rebased! #

Patch Set 8 : use length enums instead of magic constants #

Patch Set 9 : re-resolve viewport descriptors on resize #

Patch Set 10 : handle pseudoelements and shadow dom #

Patch Set 11 : rebased #

Total comments: 9

Patch Set 12 : rebased :< #

Patch Set 13 : fix zoom handling #

Patch Set 14 : actually fix zoom handling #

Total comments: 7

Patch Set 15 : move bit added for better packing #

Patch Set 16 : rebased #

Patch Set 17 : add test for browser zoom #

Total comments: 2

Patch Set 18 : fix compile on mac #

Total comments: 10

Patch Set 19 : rebased #

Patch Set 20 : addressed comments #

Patch Set 21 : rebased :\ #

Total comments: 8

Patch Set 22 : rebased and make test pass #

Patch Set 23 : rename browser zoom to page zoom #

Unified diffs Side-by-side diffs Delta from patch set Stats (+875 lines, -778 lines) Patch
M LayoutTests/animations/interpolation/line-height-interpolation-expected.txt View 1 1 chunk +12 lines, -12 lines 0 comments Download
M LayoutTests/css3/viewport-percentage-lengths/css3-viewport-percentage-lengths-getStyle.html View 1 chunk +116 lines, -101 lines 0 comments Download
M LayoutTests/css3/viewport-percentage-lengths/css3-viewport-percentage-lengths-getStyle-expected.txt View 4 chunks +36 lines, -36 lines 0 comments Download
A LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-page-zoom.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +34 lines, -0 lines 0 comments Download
A LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-page-zoom-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-resize.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +46 lines, -0 lines 0 comments Download
A LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-resize-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +35 lines, -0 lines 0 comments Download
M LayoutTests/fast/css/computed-offset-with-zoom.html View 13 1 chunk +2 lines, -2 lines 0 comments Download
M LayoutTests/fast/css/computed-offset-with-zoom-expected.txt View 2 chunks +8 lines, -8 lines 0 comments Download
M LayoutTests/fast/masking/parsing-clip-path-shape.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +6 lines, -6 lines 0 comments Download
M LayoutTests/fast/masking/parsing-clip-path-shape-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +6 lines, -6 lines 0 comments Download
M LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html View 1 1 chunk +3 lines, -3 lines 0 comments Download
M LayoutTests/fast/shapes/parsing/parsing-shape-lengths-expected.txt View 1 1 chunk +3 lines, -3 lines 0 comments Download
M LayoutTests/platform/linux/virtual/legacy-animations-engine/animations/interpolation/line-height-interpolation-expected.txt View 1 1 chunk +12 lines, -12 lines 0 comments Download
M LayoutTests/platform/win/virtual/legacy-animations-engine/animations/interpolation/line-height-interpolation-expected.txt View 1 1 chunk +12 lines, -12 lines 0 comments Download
M LayoutTests/virtual/legacy-animations-engine/animations/interpolation/line-height-interpolation-expected.txt View 1 1 chunk +12 lines, -12 lines 0 comments Download
M Source/core/animation/AnimatableLengthTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/animation/css/CSSAnimatableValueFactory.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -8 lines 0 comments Download
M Source/core/css/CSSCalculationValue.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +6 lines, -4 lines 0 comments Download
M Source/core/css/CSSCalculationValueTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSComputedStyleDeclaration.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 18 chunks +27 lines, -34 lines 0 comments Download
M Source/core/css/CSSGradientValue.cpp View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSLengthFunctions.h View 1 chunk +5 lines, -5 lines 0 comments Download
M Source/core/css/CSSLengthFunctions.cpp View 1 2 3 4 5 6 7 5 chunks +11 lines, -59 lines 0 comments Download
M Source/core/css/CSSMatrix.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSPrimitiveValue.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +1 line, -4 lines 0 comments Download
M Source/core/css/CSSPrimitiveValue.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 7 chunks +16 lines, -50 lines 0 comments Download
M Source/core/css/CSSPrimitiveValueMappings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +0 lines, -2 lines 0 comments Download
M Source/core/css/CSSToLengthConversionData.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +14 lines, -17 lines 0 comments Download
M Source/core/css/CSSToLengthConversionData.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +56 lines, -0 lines 0 comments Download
M Source/core/css/MediaQueryEvaluator.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -1 line 0 comments Download
M Source/core/css/resolver/FontBuilder.h View 2 chunks +3 lines, -0 lines 0 comments Download
M Source/core/css/resolver/FontBuilder.cpp View 1 2 3 4 5 6 7 8 9 10 2 chunks +16 lines, -9 lines 0 comments Download
M Source/core/css/resolver/MatchedPropertiesCache.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/css/resolver/MatchedPropertiesCache.cpp View 1 1 chunk +12 lines, -0 lines 0 comments Download
M Source/core/css/resolver/StyleBuilderConverter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +0 lines, -2 lines 0 comments Download
M Source/core/css/resolver/StyleBuilderCustom.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +0 lines, -2 lines 0 comments Download
M Source/core/css/resolver/StyleResolver.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/css/resolver/StyleResolver.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 5 chunks +15 lines, -1 line 0 comments Download
M Source/core/css/resolver/StyleResolverState.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/resolver/ViewportStyleResolver.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +18 lines, -16 lines 0 comments Download
M Source/core/dom/Document.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +6 lines, -0 lines 0 comments Download
M Source/core/dom/Document.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 5 chunks +15 lines, -7 lines 0 comments Download
M Source/core/dom/TreeScope.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/TreeScope.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +12 lines, -0 lines 0 comments Download
M Source/core/dom/ViewportDescription.cpp View 1 2 3 4 5 6 7 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/frame/FrameView.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +4 lines, -2 lines 0 comments Download
M Source/core/html/HTMLAreaElement.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +8 lines, -9 lines 0 comments Download
M Source/core/html/HTMLMetaElement-in.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderBR.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderBlock.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 4 chunks +5 lines, -8 lines 0 comments Download
M Source/core/rendering/RenderBox.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 37 chunks +98 lines, -131 lines 0 comments Download
M Source/core/rendering/RenderBoxModelObject.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 15 chunks +36 lines, -43 lines 0 comments Download
M Source/core/rendering/RenderFlexibleBox.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/RenderFlexibleBox.cpp View 2 chunks +6 lines, -7 lines 0 comments Download
M Source/core/rendering/RenderGrid.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/RenderInline.cpp View 1 2 3 4 5 6 2 chunks +2 lines, -4 lines 0 comments Download
M Source/core/rendering/RenderMenuList.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/RenderObject.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/rendering/RenderReplaced.cpp View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderScrollbarPart.cpp View 2 chunks +12 lines, -14 lines 0 comments Download
M Source/core/rendering/RenderTable.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +7 lines, -10 lines 0 comments Download
M Source/core/rendering/RenderTableCell.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/RenderTableSection.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -3 lines 0 comments Download
M Source/core/rendering/RenderText.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderThemeChromiumMac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/RenderView.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -4 lines 0 comments Download
M Source/core/rendering/RenderView.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +7 lines, -20 lines 0 comments Download
M Source/core/rendering/RootInlineBox.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/style/RenderStyle.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 6 chunks +14 lines, -4 lines 0 comments Download
M Source/core/rendering/style/RenderStyle.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 8 chunks +18 lines, -19 lines 0 comments Download
M Source/core/rendering/svg/RenderSVGRoot.cpp View 1 2 3 4 5 6 7 8 9 10 5 chunks +7 lines, -6 lines 0 comments Download
M Source/core/svg/SVGSVGElement.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M Source/platform/Length.h View 1 2 3 4 5 6 7 3 chunks +4 lines, -13 lines 0 comments Download
M Source/platform/LengthFunctions.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +2 lines, -7 lines 0 comments Download
M Source/web/PageScaleConstraintsSet.cpp View 1 2 3 4 5 6 7 4 chunks +5 lines, -5 lines 0 comments Download
M Source/web/WebViewImpl.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +3 lines, -3 lines 0 comments Download

Messages

Total messages: 39 (0 generated)
Timothy Loh
7 years ago (2013-12-04 05:33:40 UTC) #1
esprehn
Awesome patch, great to see all the passing of the RenderView go away. The -1 ...
7 years ago (2013-12-04 06:02:25 UTC) #2
Timothy Loh
I'm not sure what to do yet with the -1%/-2% in viewport descriptions. Possibly a ...
7 years ago (2013-12-04 07:17:39 UTC) #3
kenneth.r.christiansen
It is not just viewport meta, but also the @viewport rule which allows vh, vw ...
7 years ago (2013-12-04 07:25:42 UTC) #4
rune
On 2013/12/04 07:17:39, Timothy Loh wrote: > I'm not sure what to do yet with ...
7 years ago (2013-12-04 07:43:11 UTC) #5
rune
https://codereview.chromium.org/82083002/diff/70001/Source/core/css/resolver/ViewportStyleResolver.cpp File Source/core/css/resolver/ViewportStyleResolver.cpp (right): https://codereview.chromium.org/82083002/diff/70001/Source/core/css/resolver/ViewportStyleResolver.cpp#newcode187 Source/core/css/resolver/ViewportStyleResolver.cpp:187: return primitiveValue->computeLength<Length>(CSSToLengthConversionData(m_document->renderStyle(), m_document->renderStyle(), m_document->renderView(), 1.0f)); This change means also ...
7 years ago (2013-12-04 07:44:05 UTC) #6
rune
On 2013/12/04 07:44:05, rune - CET wrote: > This change means also viewport descriptors need ...
7 years ago (2013-12-04 07:51:02 UTC) #7
rune
https://codereview.chromium.org/82083002/diff/50001/Source/core/dom/Document.cpp File Source/core/dom/Document.cpp (right): https://codereview.chromium.org/82083002/diff/50001/Source/core/dom/Document.cpp#newcode3181 Source/core/dom/Document.cpp:3181: element->setNeedsStyleRecalc(LocalStyleChange); Does LocalStyleChange work for explicit or implicit inheritance? ...
7 years ago (2013-12-04 08:27:15 UTC) #8
esprehn
On 2013/12/04 08:27:15, rune - CET wrote: > https://codereview.chromium.org/82083002/diff/50001/Source/core/dom/Document.cpp > File Source/core/dom/Document.cpp (right): > > ...
7 years ago (2013-12-04 14:25:23 UTC) #9
Timothy Loh
Sorry for the slow response. I've addressed the outstanding issues below. I've changed the magic ...
7 years ago (2013-12-15 23:41:18 UTC) #10
kenneth.r.christiansen
https://codereview.chromium.org/82083002/diff/230001/LayoutTests/css3/viewport-percentage-lengths/css3-viewport-percentage-lengths-getStyle.html File LayoutTests/css3/viewport-percentage-lengths/css3-viewport-percentage-lengths-getStyle.html (right): https://codereview.chromium.org/82083002/diff/230001/LayoutTests/css3/viewport-percentage-lengths/css3-viewport-percentage-lengths-getStyle.html#newcode172 LayoutTests/css3/viewport-percentage-lengths/css3-viewport-percentage-lengths-getStyle.html:172: shouldBe('style.getPropertyValue("height")', vw(30)); Nice clearup https://codereview.chromium.org/82083002/diff/230001/LayoutTests/fast/css/computed-offset-with-zoom.html File LayoutTests/fast/css/computed-offset-with-zoom.html (right): https://codereview.chromium.org/82083002/diff/230001/LayoutTests/fast/css/computed-offset-with-zoom.html#newcode54 ...
7 years ago (2013-12-16 10:08:18 UTC) #11
Timothy Loh
https://codereview.chromium.org/82083002/diff/230001/LayoutTests/fast/css/computed-offset-with-zoom.html File LayoutTests/fast/css/computed-offset-with-zoom.html (right): https://codereview.chromium.org/82083002/diff/230001/LayoutTests/fast/css/computed-offset-with-zoom.html#newcode54 LayoutTests/fast/css/computed-offset-with-zoom.html:54: var windowWidth = "'" + (window.innerWidth / 10) + ...
7 years ago (2013-12-17 05:09:13 UTC) #12
Timothy Loh
https://codereview.chromium.org/82083002/diff/230001/LayoutTests/fast/css/computed-offset-with-zoom.html File LayoutTests/fast/css/computed-offset-with-zoom.html (right): https://codereview.chromium.org/82083002/diff/230001/LayoutTests/fast/css/computed-offset-with-zoom.html#newcode54 LayoutTests/fast/css/computed-offset-with-zoom.html:54: var windowWidth = "'" + (window.innerWidth / 10) + ...
7 years ago (2013-12-17 22:57:59 UTC) #13
esprehn
I think you broke something, now getComputedStyle(e).lineHeight sometimes returns "normal" instead of a computed value. ...
7 years ago (2013-12-18 01:03:54 UTC) #14
Timothy Loh
https://codereview.chromium.org/82083002/diff/290001/LayoutTests/platform/win/virtual/legacy-animations-engine/animations/interpolation/line-height-interpolation-expected.txt File LayoutTests/platform/win/virtual/legacy-animations-engine/animations/interpolation/line-height-interpolation-expected.txt (right): https://codereview.chromium.org/82083002/diff/290001/LayoutTests/platform/win/virtual/legacy-animations-engine/animations/interpolation/line-height-interpolation-expected.txt#newcode81 LayoutTests/platform/win/virtual/legacy-animations-engine/animations/interpolation/line-height-interpolation-expected.txt:81: FAIL: line-height from [75vw] to [25vh] was [normal] at ...
7 years ago (2013-12-18 01:54:42 UTC) #15
esprehn
Thanks! You rock, this is a huge improvement. lgtm
7 years ago (2013-12-18 02:01:57 UTC) #16
kenneth.r.christiansen
https://codereview.chromium.org/82083002/diff/350001/Source/core/css/resolver/ViewportStyleResolver.cpp File Source/core/css/resolver/ViewportStyleResolver.cpp (left): https://codereview.chromium.org/82083002/diff/350001/Source/core/css/resolver/ViewportStyleResolver.cpp#oldcode189 Source/core/css/resolver/ViewportStyleResolver.cpp:189: if (primitiveValue->isViewportPercentageLength()) Are we still supporting @viewport { width: ...
7 years ago (2013-12-18 07:16:17 UTC) #17
Timothy Loh
https://codereview.chromium.org/82083002/diff/230001/Source/platform/LengthFunctions.cpp File Source/platform/LengthFunctions.cpp (left): https://codereview.chromium.org/82083002/diff/230001/Source/platform/LengthFunctions.cpp#oldcode46 Source/platform/LengthFunctions.cpp:46: case ViewportPercentageWidth: On 2013/12/16 10:08:19, kenneth.r.christiansen wrote: > Ain't ...
7 years ago (2013-12-18 07:18:25 UTC) #18
kenneth.r.christiansen
On 2013/12/18 07:18:25, Timothy Loh wrote: > https://codereview.chromium.org/82083002/diff/230001/Source/platform/LengthFunctions.cpp > File Source/platform/LengthFunctions.cpp (left): > > https://codereview.chromium.org/82083002/diff/230001/Source/platform/LengthFunctions.cpp#oldcode46 ...
7 years ago (2013-12-18 07:41:11 UTC) #19
kenneth.r.christiansen
John, PDR, can you please take a look at the above comment
7 years ago (2013-12-18 07:43:16 UTC) #20
johnme
Some quick comments. https://codereview.chromium.org/82083002/diff/370001/Source/core/css/CSSLengthFunctions.cpp File Source/core/css/CSSLengthFunctions.cpp (left): https://codereview.chromium.org/82083002/diff/370001/Source/core/css/CSSLengthFunctions.cpp#oldcode110 Source/core/css/CSSLengthFunctions.cpp:110: // This method has code duplicated ...
7 years ago (2013-12-18 12:04:13 UTC) #21
rune
On 2013/12/18 07:16:17, kenneth.r.christiansen wrote: > https://codereview.chromium.org/82083002/diff/350001/Source/core/css/resolver/ViewportStyleResolver.cpp > File Source/core/css/resolver/ViewportStyleResolver.cpp (left): > > https://codereview.chromium.org/82083002/diff/350001/Source/core/css/resolver/ViewportStyleResolver.cpp#oldcode189 > ...
7 years ago (2013-12-19 11:30:49 UTC) #22
Timothy Loh
On 2013/12/19 11:30:49, rune - CET wrote: > The result changes between reloads and resizing ...
7 years ago (2013-12-19 21:17:57 UTC) #23
Timothy Loh
I've tweaked the CSSToLengthConversionData to store two floats for viewport width and height, so it ...
7 years ago (2013-12-23 06:28:15 UTC) #24
rune
On 2013/12/23 06:28:15, Timothy Loh wrote: > This appears to make viewport units in @viewport ...
7 years ago (2013-12-23 14:22:41 UTC) #25
Timothy Loh
kenneth: PTAL
6 years, 11 months ago (2014-01-01 23:22:53 UTC) #26
kenneth.r.christiansen
lgtm https://codereview.chromium.org/82083002/diff/450001/LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-browser-zoom-expected.txt File LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-browser-zoom-expected.txt (right): https://codereview.chromium.org/82083002/diff/450001/LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-browser-zoom-expected.txt#newcode1 LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-browser-zoom-expected.txt:1: This test checks that getComputedStyle returns pixel values ...
6 years, 11 months ago (2014-01-02 09:03:24 UTC) #27
Timothy Loh
https://codereview.chromium.org/82083002/diff/450001/LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-browser-zoom-expected.txt File LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-browser-zoom-expected.txt (right): https://codereview.chromium.org/82083002/diff/450001/LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-browser-zoom-expected.txt#newcode1 LayoutTests/css3/viewport-percentage-lengths/viewport-percentage-lengths-browser-zoom-expected.txt:1: This test checks that getComputedStyle returns pixel values for ...
6 years, 11 months ago (2014-01-03 00:23:08 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timloh@chromium.org/82083002/600001
6 years, 11 months ago (2014-01-03 00:23:44 UTC) #29
commit-bot: I haz the power
Retried try job too often on blink_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=blink_presubmit&number=13406
6 years, 11 months ago (2014-01-03 00:42:51 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timloh@chromium.org/82083002/600001
6 years, 11 months ago (2014-01-03 00:44:39 UTC) #31
Timothy Loh
On 2014/01/03 00:42:51, I haz the power (commit-bot) wrote: > Retried try job too often ...
6 years, 11 months ago (2014-01-03 00:44:50 UTC) #32
commit-bot: I haz the power
Retried try job too often on win_layout for step(s) webkit_lint http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_layout&number=17713
6 years, 11 months ago (2014-01-03 02:28:51 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timloh@chromium.org/82083002/600001
6 years, 11 months ago (2014-01-03 02:30:21 UTC) #34
commit-bot: I haz the power
Retried try job too often on win_layout for step(s) webkit_lint http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_layout&number=17720
6 years, 11 months ago (2014-01-03 03:28:09 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timloh@chromium.org/82083002/600001
6 years, 11 months ago (2014-01-03 03:54:06 UTC) #36
commit-bot: I haz the power
Retried try job too often on win_layout for step(s) webkit_lint http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_layout&number=17723
6 years, 11 months ago (2014-01-03 05:04:10 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timloh@chromium.org/82083002/600001
6 years, 11 months ago (2014-01-03 07:04:29 UTC) #38
commit-bot: I haz the power
6 years, 11 months ago (2014-01-03 08:28:40 UTC) #39
Message was sent while issue was closed.
Change committed as 164448

Powered by Google App Engine
This is Rietveld 408576698