/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ClassNodeList.cpp | 40 , m_classNames(classNames, document().inQuirksMode())
|
Element.cpp | 636 bool inQuirksMode = document().inQuirksMode(); 637 if ((!inQuirksMode && document().documentElement() == this) 638 || (inQuirksMode && isHTMLElement() && document().body() == this)) { 656 bool inQuirksMode = document().inQuirksMode(); 658 if ((!inQuirksMode && document().documentElement() == this) 659 || (inQuirksMode && isHTMLElement() && document().body() == this)) { 682 if (document().inQuirksMode()) 705 if (document().inQuirksMode()) [all...] |
TreeScope.cpp | 318 if (rootNode()->document().inQuirksMode()) {
|
SelectorQuery.cpp | 217 return m_selectors.size() == 1 && rootNode.inDocument() && !rootNode.document().inQuirksMode();
|
Document.h | 574 bool inQuirksMode() const { return m_compatibilityMode == QuirksMode; } [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSParserMode.cpp | 45 , m_mode(document.inQuirksMode() ? HTMLQuirksMode : HTMLStandardMode)
|
FontSize.cpp | 129 bool quirksMode = document->inQuirksMode(); 162 bool quirksMode = document->inQuirksMode();
|
MediaQueryEvaluator.cpp | 364 if (!computeLength(value, !frame->document()->inQuirksMode(), style, length)) 380 if (!computeLength(value, !frame->document()->inQuirksMode(), style, length)) 401 return computeLength(value, !frame->document()->inQuirksMode(), style, length) && compareValue(height, length, op); 416 return computeLength(value, !frame->document()->inQuirksMode(), style, length) && compareValue(width, length, op);
|
CSSParser.h | 495 bool inQuirksMode() const { return isQuirksModeBehavior(m_context.mode()); }
|
CSSParser-in.cpp | [all...] |
SelectorChecker.cpp | 63 : m_strictParsing(!document.inQuirksMode()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
ClassList.cpp | 65 if (m_element->document().inQuirksMode()) {
|
HTMLBodyElement.cpp | 104 if (CSSParser::parseColor(color, value, !document().inQuirksMode())) { 213 if (!document.inQuirksMode()) 227 if (!document.inQuirksMode()) 246 if (!document.inQuirksMode()) 260 if (!document.inQuirksMode())
|
HTMLOptionElement.cpp | 111 if (!document.inQuirksMode())
|
HTMLCanvasElement.cpp | 168 m_context = CanvasRenderingContext2D::create(this, static_cast<Canvas2DContextAttributes*>(attrs), document().inQuirksMode());
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderListItem.cpp | 231 bool inQuirksMode = curr->document().inQuirksMode(); 245 if (curr->isListItem() && inQuirksMode && currChild->node() &&
|
RenderTableCell.h | 103 if (!document().inQuirksMode() && style()->boxSizing() != BORDER_BOX)
|
RenderBlockFlow.cpp | [all...] |
AutoTableLayout.cpp | 129 if (m_table->document().inQuirksMode() && columnLayout.maxLogicalWidth > columnLayout.logicalWidth.value() && fixedContributor != maxContributor) { [all...] |
RenderBox.h | 413 return document().inQuirksMode() && style()->logicalHeight().isAuto() && !isFloatingOrOutOfFlowPositioned() && (isRoot() || isBody()) && !document().shouldDisplaySeamlesslyWithParent() && !isInline(); [all...] |
RenderBox.cpp | [all...] |
RenderTable.cpp | 521 if (!topSection() && computedLogicalHeight > totalSectionLogicalHeight && !document().inQuirksMode()) { [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLConstructionSite.h | 164 bool inQuirksMode();
|
HTMLConstructionSite.cpp | 320 , m_inQuirksMode(document->inQuirksMode()) 331 , m_inQuirksMode(fragment->document().inQuirksMode()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleResolver.cpp | 526 if (document().inQuirksMode()) 719 StyleAdjuster adjuster(state.cachedUAStyle(), m_document.inQuirksMode()); [all...] |