OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shouldstyleattributebeempty
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyStyleCommand.h
136
enum
ShouldStyleAttributeBeEmpty
{ AllowNonEmptyStyleAttribute, StyleAttributeShouldBeEmpty };
137
bool isEmptyFontTag(const Element*,
ShouldStyleAttributeBeEmpty
= StyleAttributeShouldBeEmpty);
ApplyStyleCommand.cpp
77
static bool hasNoAttributeOrOnlyStyleAttribute(const HTMLElement* element,
ShouldStyleAttributeBeEmpty
shouldStyleAttributeBeEmpty
)
86
if (element->hasAttribute(styleAttr) && (
shouldStyleAttributeBeEmpty
== AllowNonEmptyStyleAttribute
108
bool isEmptyFontTag(const Element* element,
ShouldStyleAttributeBeEmpty
shouldStyleAttributeBeEmpty
)
113
return hasNoAttributeOrOnlyStyleAttribute(toHTMLFontElement(element),
shouldStyleAttributeBeEmpty
);
[
all
...]
Completed in 242 milliseconds