Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLTableColElement.cpp
index 42a4917..662e966 100644 (file)
@@ -38,7 +38,6 @@ inline HTMLTableColElement::HTMLTableColElement(const QualifiedName& tagName, Do
     : HTMLTablePartElement(tagName, document)
     , m_span(1)
 {
-    ScriptWrappable::init(this);
 }
 
 DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(HTMLTableColElement)
@@ -83,10 +82,10 @@ void HTMLTableColElement::parseAttribute(const QualifiedName& name, const Atomic
 const StylePropertySet* HTMLTableColElement::additionalPresentationAttributeStyle()
 {
     if (!hasTagName(colgroupTag))
-        return 0;
+        return nullptr;
     if (HTMLTableElement* table = findParentTable())
         return table->additionalGroupStyle(false);
-    return 0;
+    return nullptr;
 }
 
 void HTMLTableColElement::setSpan(int n)