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

Unified Diff: Source/bindings/v8/custom/V8CSSRuleCustom.cpp

Issue 134473008: Remove CSS regions support, keeping a bare minimum to support "region-based" multicol. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master Created 6 years, 10 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 | « LayoutTests/webexposed/global-constructors-listing-expected.txt ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/custom/V8CSSRuleCustom.cpp
diff --git a/Source/bindings/v8/custom/V8CSSRuleCustom.cpp b/Source/bindings/v8/custom/V8CSSRuleCustom.cpp
index d4111aced98d20419be53b11c52a0a2a6747b35f..6faddc13af66d73b55aaca32c92c0bf884d01c3a 100644
--- a/Source/bindings/v8/custom/V8CSSRuleCustom.cpp
+++ b/Source/bindings/v8/custom/V8CSSRuleCustom.cpp
@@ -42,7 +42,6 @@
#include "V8CSSSupportsRule.h"
#include "V8CSSViewportRule.h"
#include "V8WebKitCSSFilterRule.h"
-#include "V8WebKitCSSRegionRule.h"
namespace WebCore {
@@ -75,8 +74,6 @@ v8::Handle<v8::Object> wrap(CSSRule* impl, v8::Handle<v8::Object> creationContex
return wrap(toCSSSupportsRule(impl), creationContext, isolate);
case CSSRule::VIEWPORT_RULE:
return wrap(toCSSViewportRule(impl), creationContext, isolate);
- case CSSRule::WEBKIT_REGION_RULE:
- return wrap(toCSSRegionRule(impl), creationContext, isolate);
case CSSRule::WEBKIT_FILTER_RULE:
return wrap(toCSSFilterRule(impl), creationContext, isolate);
}
« no previous file with comments | « LayoutTests/webexposed/global-constructors-listing-expected.txt ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698