From: timothy_horton@apple.com Date: Thu, 6 Apr 2017 21:12:25 +0000 (+0000) Subject: Follow up to r209304, remove line numbers from one more StyleRule construction X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=777188b04db81a9fe499425caf13068a51dc38f2 Follow up to r209304, remove line numbers from one more StyleRule construction https://bugs.webkit.org/show_bug.cgi?id=170564 Reviewed by Simon Fraser. * css/StyleRule.cpp: (WebCore::StyleRuleViewport::StyleRuleViewport): This one was missed in r209304. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@215059 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 0853fbc..a4b7625 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,14 @@ +2017-04-06 Tim Horton + + Follow up to r209304, remove line numbers from one more StyleRule construction + https://bugs.webkit.org/show_bug.cgi?id=170564 + + Reviewed by Simon Fraser. + + * css/StyleRule.cpp: + (WebCore::StyleRuleViewport::StyleRuleViewport): + This one was missed in r209304. + 2017-04-06 Timothy Horton Remove an unused member and constructor parameter from CSSPropertyParser diff --git a/Source/WebCore/css/StyleRule.cpp b/Source/WebCore/css/StyleRule.cpp index 60d1dbb..1ca9004 100644 --- a/Source/WebCore/css/StyleRule.cpp +++ b/Source/WebCore/css/StyleRule.cpp @@ -449,7 +449,7 @@ StyleRuleRegion::StyleRuleRegion(const StyleRuleRegion& o) #if ENABLE(CSS_DEVICE_ADAPTATION) StyleRuleViewport::StyleRuleViewport(Ref&& properties) - : StyleRuleBase(Viewport, 0) + : StyleRuleBase(Viewport) , m_properties(WTFMove(properties)) { }