/* * Copyright (C) 2013 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "config.h" #if ENABLE(VIDEO_TRACK) #include "WebVTTElement.h" #include "HTMLElementFactory.h" #include "TextTrack.h" namespace WebCore { static const QualifiedName& nodeTypeToTagName(WebVTTNodeType nodeType) { static NeverDestroyed cTag(nullAtom, "c", nullAtom); static NeverDestroyed vTag(nullAtom, "v", nullAtom); static NeverDestroyed langTag(nullAtom, "lang", nullAtom); static NeverDestroyed bTag(nullAtom, "b", nullAtom); static NeverDestroyed uTag(nullAtom, "u", nullAtom); static NeverDestroyed iTag(nullAtom, "i", nullAtom); static NeverDestroyed rubyTag(nullAtom, "ruby", nullAtom); static NeverDestroyed rtTag(nullAtom, "rt", nullAtom); switch (nodeType) { case WebVTTNodeTypeClass: return cTag; case WebVTTNodeTypeItalic: return iTag; case WebVTTNodeTypeLanguage: return langTag; case WebVTTNodeTypeBold: return bTag; case WebVTTNodeTypeUnderline: return uTag; case WebVTTNodeTypeRuby: return rubyTag; case WebVTTNodeTypeRubyText: return rtTag; case WebVTTNodeTypeVoice: return vTag; case WebVTTNodeTypeNone: default: ASSERT_NOT_REACHED(); return cTag; // Make the compiler happy. } } WebVTTElement::WebVTTElement(WebVTTNodeType nodeType, Document& document) : Element(nodeTypeToTagName(nodeType), document, CreateElement) , m_isPastNode(0) , m_webVTTNodeType(nodeType) { } Ref WebVTTElement::create(WebVTTNodeType nodeType, Document& document) { return adoptRef(*new WebVTTElement(nodeType, document)); } Ref WebVTTElement::cloneElementWithoutAttributesAndChildren(Document& targetDocument) { Ref clone = create(static_cast(m_webVTTNodeType), targetDocument); clone->setLanguage(m_language); return WTFMove(clone); } PassRefPtr WebVTTElement::createEquivalentHTMLElement(Document& document) { RefPtr htmlElement; switch (m_webVTTNodeType) { case WebVTTNodeTypeClass: case WebVTTNodeTypeLanguage: case WebVTTNodeTypeVoice: htmlElement = HTMLElementFactory::createElement(HTMLNames::spanTag, document); htmlElement->setAttribute(HTMLNames::titleAttr, getAttribute(voiceAttributeName())); htmlElement->setAttribute(HTMLNames::langAttr, getAttribute(langAttributeName())); break; case WebVTTNodeTypeItalic: htmlElement = HTMLElementFactory::createElement(HTMLNames::iTag, document); break; case WebVTTNodeTypeBold: htmlElement = HTMLElementFactory::createElement(HTMLNames::bTag, document); break; case WebVTTNodeTypeUnderline: htmlElement = HTMLElementFactory::createElement(HTMLNames::uTag, document); break; case WebVTTNodeTypeRuby: htmlElement = HTMLElementFactory::createElement(HTMLNames::rubyTag, document); break; case WebVTTNodeTypeRubyText: htmlElement = HTMLElementFactory::createElement(HTMLNames::rtTag, document); break; } ASSERT(htmlElement); if (htmlElement) htmlElement->setAttribute(HTMLNames::classAttr, fastGetAttribute(HTMLNames::classAttr)); return htmlElement.release(); } } // namespace WebCore #endif