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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 1803933002: Use correct cascading order for Shadow DOM v1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix inline style Created 4 years, 9 months 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 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 , m_updateFocusAppearanceTimer(this, &Document::updateFocusAppearanceTimerFi red) 424 , m_updateFocusAppearanceTimer(this, &Document::updateFocusAppearanceTimerFi red)
425 , m_cssTarget(nullptr) 425 , m_cssTarget(nullptr)
426 , m_loadEventProgress(LoadEventNotRun) 426 , m_loadEventProgress(LoadEventNotRun)
427 , m_startTime(currentTime()) 427 , m_startTime(currentTime())
428 , m_scriptRunner(ScriptRunner::create(this)) 428 , m_scriptRunner(ScriptRunner::create(this))
429 , m_xmlVersion("1.0") 429 , m_xmlVersion("1.0")
430 , m_xmlStandalone(StandaloneUnspecified) 430 , m_xmlStandalone(StandaloneUnspecified)
431 , m_hasXMLDeclaration(0) 431 , m_hasXMLDeclaration(0)
432 , m_designMode(false) 432 , m_designMode(false)
433 , m_isRunningExecCommand(false) 433 , m_isRunningExecCommand(false)
434 , m_useCascadeOrderForShadowDOMV1(false)
434 , m_hasAnnotatedRegions(false) 435 , m_hasAnnotatedRegions(false)
435 , m_annotatedRegionsDirty(false) 436 , m_annotatedRegionsDirty(false)
436 , m_useSecureKeyboardEntryWhenActive(false) 437 , m_useSecureKeyboardEntryWhenActive(false)
437 , m_documentClasses(documentClasses) 438 , m_documentClasses(documentClasses)
438 , m_isViewSource(false) 439 , m_isViewSource(false)
439 , m_sawElementsInKnownNamespaces(false) 440 , m_sawElementsInKnownNamespaces(false)
440 , m_isSrcdocDocument(false) 441 , m_isSrcdocDocument(false)
441 , m_isMobileDocument(false) 442 , m_isMobileDocument(false)
442 , m_layoutView(0) 443 , m_layoutView(0)
443 #if !ENABLE(OILPAN) 444 #if !ENABLE(OILPAN)
(...skipping 5590 matching lines...) Expand 10 before | Expand all | Expand 10 after
6034 #ifndef NDEBUG 6035 #ifndef NDEBUG
6035 using namespace blink; 6036 using namespace blink;
6036 void showLiveDocumentInstances() 6037 void showLiveDocumentInstances()
6037 { 6038 {
6038 Document::WeakDocumentSet& set = Document::liveDocumentSet(); 6039 Document::WeakDocumentSet& set = Document::liveDocumentSet();
6039 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6040 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6040 for (Document* document : set) 6041 for (Document* document : set)
6041 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data()); 6042 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data());
6042 } 6043 }
6043 #endif 6044 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698