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

Unified Diff: Source/core/css/CSSViewportRule.cpp

Issue 16209003: Unprefix the @viewport rule of CSS Device Adaptation spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSViewportRule.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSViewportRule.cpp
diff --git a/Source/core/css/CSSViewportRule.cpp b/Source/core/css/CSSViewportRule.cpp
index 91d2c3ab26bd3102fe1e3d969e75ae0b5e49af5b..5510cff16736ac1e1ebe0abdb4ffb5cf658d28ea 100644
--- a/Source/core/css/CSSViewportRule.cpp
+++ b/Source/core/css/CSSViewportRule.cpp
@@ -62,7 +62,7 @@ CSSStyleDeclaration* CSSViewportRule::style() const
String CSSViewportRule::cssText() const
{
StringBuilder result;
- result.appendLiteral("@-webkit-viewport { ");
+ result.appendLiteral("@viewport { ");
String decls = m_viewportRule->properties()->asText();
result.append(decls);
« no previous file with comments | « Source/core/css/CSSViewportRule.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698