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

Unified Diff: Source/core/css/CSSDefaultStyleSheets.cpp

Issue 61733019: Make unicode-bidi:isolate the default for block elements instead of unicode-bidi:embed Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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
Index: Source/core/css/CSSDefaultStyleSheets.cpp
diff --git a/Source/core/css/CSSDefaultStyleSheets.cpp b/Source/core/css/CSSDefaultStyleSheets.cpp
index 53d79c1775e05e504d40ce378e5772e73ba11893..559c620d2e345806a5c9d00e9075046cd247f4f3 100644
--- a/Source/core/css/CSSDefaultStyleSheets.cpp
+++ b/Source/core/css/CSSDefaultStyleSheets.cpp
@@ -62,7 +62,7 @@ static const char simpleUserAgentStyleSheet[] = "html,body,div{display:block}hea
static inline bool elementCanUseSimpleDefaultStyle(Element* e)
{
- return isHTMLHtmlElement(e) || e->hasTagName(headTag) || e->hasTagName(bodyTag) || e->hasTagName(divTag) || e->hasTagName(spanTag) || e->hasTagName(brTag) || isHTMLAnchorElement(e);
+ return isHTMLHtmlElement(e) || e->hasTagName(headTag) || e->hasTagName(bodyTag) || e->hasTagName(spanTag) || e->hasTagName(brTag) || isHTMLAnchorElement(e);
esprehn 2013/11/14 06:46:54 Removing div from the simple sheet doesn't look ri
}
static const MediaQueryEvaluator& screenEval()

Powered by Google App Engine
This is Rietveld 408576698