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

Unified Diff: Source/core/html/HTMLLinkElement.cpp

Issue 1115353002: Update renderer to layoutObject in core/html. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLLIElement.cpp ('k') | Source/core/html/HTMLMeterElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLLinkElement.cpp
diff --git a/Source/core/html/HTMLLinkElement.cpp b/Source/core/html/HTMLLinkElement.cpp
index 914cdf0474ed277fd5f9cf086f7cbdfecc0845af..b8eae1afbe7e3af70c625e3a7c0b507cb2736f8a 100644
--- a/Source/core/html/HTMLLinkElement.cpp
+++ b/Source/core/html/HTMLLinkElement.cpp
@@ -732,12 +732,12 @@ void LinkStyle::process()
mediaQueryMatches = evaluator.eval(media.get());
}
- // Don't hold up render tree construction and script execution on stylesheets
- // that are not needed for the rendering at the moment.
+ // Don't hold up layout tree construction and script execution on stylesheets
+ // that are not needed for the layout at the moment.
bool blocking = mediaQueryMatches && !m_owner->isAlternate();
addPendingSheet(blocking ? Blocking : NonBlocking);
- // Load stylesheets that are not needed for the rendering immediately with low priority.
+ // Load stylesheets that are not needed for the layout immediately with low priority.
FetchRequest request = builder.build(blocking);
AtomicString crossOriginMode = m_owner->fastGetAttribute(HTMLNames::crossoriginAttr);
if (!crossOriginMode.isNull()) {
« no previous file with comments | « Source/core/html/HTMLLIElement.cpp ('k') | Source/core/html/HTMLMeterElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698