Title: [215059] trunk/Source/WebCore
Revision
215059
Author
timothy_hor...@apple.com
Date
2017-04-06 14:12:25 -0700 (Thu, 06 Apr 2017)

Log Message

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.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (215058 => 215059)


--- trunk/Source/WebCore/ChangeLog	2017-04-06 21:11:35 UTC (rev 215058)
+++ trunk/Source/WebCore/ChangeLog	2017-04-06 21:12:25 UTC (rev 215059)
@@ -1,3 +1,14 @@
+2017-04-06  Tim Horton  <timothy_hor...@apple.com>
+
+        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  <timothy_hor...@apple.com>
 
         Remove an unused member and constructor parameter from CSSPropertyParser

Modified: trunk/Source/WebCore/css/StyleRule.cpp (215058 => 215059)


--- trunk/Source/WebCore/css/StyleRule.cpp	2017-04-06 21:11:35 UTC (rev 215058)
+++ trunk/Source/WebCore/css/StyleRule.cpp	2017-04-06 21:12:25 UTC (rev 215059)
@@ -449,7 +449,7 @@
 
 #if ENABLE(CSS_DEVICE_ADAPTATION)
 StyleRuleViewport::StyleRuleViewport(Ref<StyleProperties>&& properties)
-    : StyleRuleBase(Viewport, 0)
+    : StyleRuleBase(Viewport)
     , m_properties(WTFMove(properties))
 {
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to