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

Side by Side Diff: Source/WebCore/dom/Document.cpp

Issue 6349095: Merge 77355 - 2011-02-01 Mihai Parparita <mihaip@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 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
« no previous file with comments | « Source/WebCore/ChangeLog ('k') | Source/WebCore/dom/EventQueue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
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 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 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 * 10 *
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 , m_createRenderers(true) 406 , m_createRenderers(true)
407 , m_inPageCache(false) 407 , m_inPageCache(false)
408 , m_useSecureKeyboardEntryWhenActive(false) 408 , m_useSecureKeyboardEntryWhenActive(false)
409 , m_isXHTML(isXHTML) 409 , m_isXHTML(isXHTML)
410 , m_isHTML(isHTML) 410 , m_isHTML(isHTML)
411 , m_numNodeListCaches(0) 411 , m_numNodeListCaches(0)
412 #if USE(JSC) 412 #if USE(JSC)
413 , m_normalWorldWrapperCache(0) 413 , m_normalWorldWrapperCache(0)
414 #endif 414 #endif
415 , m_usingGeolocation(false) 415 , m_usingGeolocation(false)
416 , m_eventQueue(adoptPtr(new EventQueue)) 416 , m_eventQueue(EventQueue::create(this))
417 #if ENABLE(WML) 417 #if ENABLE(WML)
418 , m_containsWMLContent(false) 418 , m_containsWMLContent(false)
419 #endif 419 #endif
420 , m_weakReference(DocumentWeakReference::create(this)) 420 , m_weakReference(DocumentWeakReference::create(this))
421 , m_idAttributeName(idAttr) 421 , m_idAttributeName(idAttr)
422 #if ENABLE(FULLSCREEN_API) 422 #if ENABLE(FULLSCREEN_API)
423 , m_isFullScreen(0) 423 , m_isFullScreen(0)
424 , m_areKeysEnabledInFullScreen(0) 424 , m_areKeysEnabledInFullScreen(0)
425 , m_fullScreenRenderer(0) 425 , m_fullScreenRenderer(0)
426 , m_fullScreenChangeDelayTimer(this, &Document::fullScreenChangeDelayTimerFi red) 426 , m_fullScreenChangeDelayTimer(this, &Document::fullScreenChangeDelayTimerFi red)
(...skipping 4653 matching lines...) Expand 10 before | Expand all | Expand 10 after
5080 // This functions is used for checking such possibility of FOUCs. 5080 // This functions is used for checking such possibility of FOUCs.
5081 // Note that the implementation considers only empty or <head> only contents as a FOUC cause 5081 // Note that the implementation considers only empty or <head> only contents as a FOUC cause
5082 // rather than missing <body>, because non-HTML document like SVG and arbitr ary XML from foreign namespace 5082 // rather than missing <body>, because non-HTML document like SVG and arbitr ary XML from foreign namespace
5083 // should be painted even if there is no <body>. 5083 // should be painted even if there is no <body>.
5084 if (didLayoutWithPendingStylesheets()) 5084 if (didLayoutWithPendingStylesheets())
5085 return true; 5085 return true;
5086 return !hasHeadSibling(this); 5086 return !hasHeadSibling(this);
5087 } 5087 }
5088 5088
5089 } // namespace WebCore 5089 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/WebCore/ChangeLog ('k') | Source/WebCore/dom/EventQueue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698