| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights |
| 5 * reserved. | 5 * reserved. |
| 6 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> | 6 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 String EventAttributeValue() const override; | 83 String EventAttributeValue() const override; |
| 84 String CrossOriginAttributeValue() const override; | 84 String CrossOriginAttributeValue() const override; |
| 85 String IntegrityAttributeValue() const override; | 85 String IntegrityAttributeValue() const override; |
| 86 String TextFromChildren() override; | 86 String TextFromChildren() override; |
| 87 String TextContent() const override; | 87 String TextContent() const override; |
| 88 bool AsyncAttributeValue() const override; | 88 bool AsyncAttributeValue() const override; |
| 89 bool DeferAttributeValue() const override; | 89 bool DeferAttributeValue() const override; |
| 90 bool HasSourceAttribute() const override; | 90 bool HasSourceAttribute() const override; |
| 91 bool IsConnected() const override; | 91 bool IsConnected() const override; |
| 92 bool HasChildren() const override; | 92 bool HasChildren() const override; |
| 93 bool IsNonceableElement() const override; | 93 const AtomicString& GetNonceForElement() const override; |
| 94 bool AllowInlineScriptForCSP(const AtomicString& nonce, | 94 bool AllowInlineScriptForCSP(const AtomicString& nonce, |
| 95 const WTF::OrdinalNumber&, | 95 const WTF::OrdinalNumber&, |
| 96 const String& script_content) override; | 96 const String& script_content) override; |
| 97 AtomicString InitiatorName() const override; | 97 AtomicString InitiatorName() const override; |
| 98 void DispatchLoadEvent() override; | 98 void DispatchLoadEvent() override; |
| 99 void DispatchErrorEvent() override; | 99 void DispatchErrorEvent() override; |
| 100 void SetScriptElementForBinding( | 100 void SetScriptElementForBinding( |
| 101 HTMLScriptElementOrSVGScriptElement&) override; | 101 HTMLScriptElementOrSVGScriptElement&) override; |
| 102 | 102 |
| 103 Element* CloneElementWithoutAttributesAndChildren() override; | 103 Element* CloneElementWithoutAttributesAndChildren() override; |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace blink | 106 } // namespace blink |
| 107 | 107 |
| 108 #endif // HTMLScriptElement_h | 108 #endif // HTMLScriptElement_h |
| OLD | NEW |