summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLStyleElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLStyleElement.cpp')
-rw-r--r--WebCore/html/HTMLStyleElement.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/html/HTMLStyleElement.cpp b/WebCore/html/HTMLStyleElement.cpp
index 9403ace..67eb1cc 100644
--- a/WebCore/html/HTMLStyleElement.cpp
+++ b/WebCore/html/HTMLStyleElement.cpp
@@ -43,7 +43,7 @@ HTMLStyleElement::HTMLStyleElement(Document* doc)
void HTMLStyleElement::parseMappedAttribute(MappedAttribute *attr)
{
if (attr->name() == mediaAttr)
- m_media = attr->value().string().lower();
+ m_media = attr->value().domString().lower();
else if (attr->name() == titleAttr && m_sheet)
m_sheet->setTitle(attr->value());
else
@@ -71,10 +71,10 @@ void HTMLStyleElement::removedFromDocument()
StyleElement::removedFromDocument(document());
}
-void HTMLStyleElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
+void HTMLStyleElement::childrenChanged(bool changedByParser)
{
StyleElement::process(this);
- HTMLElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
+ HTMLElement::childrenChanged(changedByParser);
}
StyleSheet* HTMLStyleElement::sheet()