Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(525)

Side by Side Diff: Source/core/html/HTMLElement.h

Issue 524593003: Resolve direction correctly when dir attribute is not in a defined state Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix failing test Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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) 2004-2007, 2009, 2014 Apple Inc. All rights reserved. 4 * Copyright (C) 2004-2007, 2009, 2014 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 virtual void accessKeyAction(bool sendMouseEvents) override; 73 virtual void accessKeyAction(bool sendMouseEvents) override;
74 74
75 bool ieForbidsInsertHTML() const; 75 bool ieForbidsInsertHTML() const;
76 76
77 virtual HTMLFormElement* formOwner() const { return nullptr; } 77 virtual HTMLFormElement* formOwner() const { return nullptr; }
78 78
79 HTMLFormElement* findFormAncestor() const; 79 HTMLFormElement* findFormAncestor() const;
80 80
81 bool hasDirectionAuto() const; 81 bool hasDirectionAuto() const;
82 TextDirection directionalityIfhasDirAutoAttribute(bool& isAuto) const; 82 TextDirection directionalityIfhasDirAutoAttribute(bool& isAuto) const;
83 TextDirection determineDirection() const;
83 84
84 virtual bool isHTMLUnknownElement() const { return false; } 85 virtual bool isHTMLUnknownElement() const { return false; }
85 virtual bool isPluginElement() const { return false; } 86 virtual bool isPluginElement() const { return false; }
86 87
87 virtual bool isLabelable() const { return false; } 88 virtual bool isLabelable() const { return false; }
88 // http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html #interactive-content 89 // http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html #interactive-content
89 virtual bool isInteractiveContent() const; 90 virtual bool isInteractiveContent() const;
90 virtual void defaultEventHandler(Event*) override; 91 virtual void defaultEventHandler(Event*) override;
91 92
92 static const AtomicString& eventNameForAttributeName(const QualifiedName& at trName); 93 static const AtomicString& eventNameForAttributeName(const QualifiedName& at trName);
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 template<typename T> inline bool is##thisType(const PassRefPtr<T>& node) { r eturn is##thisType(node.get()); } \ 175 template<typename T> inline bool is##thisType(const PassRefPtr<T>& node) { r eturn is##thisType(node.get()); } \
175 template<typename T> inline bool is##thisType(const RefPtr<T>& node) { retur n is##thisType(node.get()); } \ 176 template<typename T> inline bool is##thisType(const RefPtr<T>& node) { retur n is##thisType(node.get()); } \
176 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e lement) { return is##thisType(element); } \ 177 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e lement) { return is##thisType(element); } \
177 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) 178 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType)
178 179
179 } // namespace blink 180 } // namespace blink
180 181
181 #include "core/HTMLElementTypeHelpers.h" 182 #include "core/HTMLElementTypeHelpers.h"
182 183
183 #endif // HTMLElement_h 184 #endif // HTMLElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698