summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js/JSCSSRuleCustom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/js/JSCSSRuleCustom.cpp')
-rw-r--r--WebCore/bindings/js/JSCSSRuleCustom.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/WebCore/bindings/js/JSCSSRuleCustom.cpp b/WebCore/bindings/js/JSCSSRuleCustom.cpp
index 4d226d0..20b3ab4 100644
--- a/WebCore/bindings/js/JSCSSRuleCustom.cpp
+++ b/WebCore/bindings/js/JSCSSRuleCustom.cpp
@@ -47,17 +47,6 @@ using namespace JSC;
namespace WebCore {
-void JSCSSRule::markChildren(MarkStack& markStack)
-{
- Base::markChildren(markStack);
-
- if (CSSStyleSheet* parentStyleSheet = impl()->parentStyleSheet())
- markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), parentStyleSheet);
-
- if (CSSRule* parentRule = impl()->parentRule())
- markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), parentRule);
-}
-
JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, CSSRule* rule)
{
if (!rule)