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

Side by Side Diff: Source/core/css/html.css

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: Proposed for landing Created 7 years 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 * The default style sheet used to render HTML. 2 * The default style sheet used to render HTML.
3 * 3 *
4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 display: inline-block; 1135 display: inline-block;
1136 width: 0.66em; 1136 width: 0.66em;
1137 height: 0.66em; 1137 height: 0.66em;
1138 margin-right: 0.4em; 1138 margin-right: 0.4em;
1139 } 1139 }
1140 1140
1141 template { 1141 template {
1142 display: none 1142 display: none
1143 } 1143 }
1144 1144
1145 bdi, output {
1146 unicode-bidi: -webkit-isolate;
1147 }
1148
1149 bdo { 1145 bdo {
1150 unicode-bidi: bidi-override; 1146 unicode-bidi: bidi-override;
1151 } 1147 }
1152 1148
1153 textarea[dir=auto] { 1149 textarea[dir=auto] {
1154 unicode-bidi: -webkit-plaintext; 1150 unicode-bidi: -webkit-plaintext;
1155 } 1151 }
1156 1152
1153 address, blockquote, center, div, figure, figcaption, footer, form,
1154 header, hr, legend, listing, p, plaintext, pre, summary, xmp, article,
1155 aside, h1, h2, h3, h4, h5, h6, hgroup, main, nav, section, table, caption,
1156 colgroup, col, thead, tbody, tfoot, tr, td, th, dir, dd, dl, dt, menu,
1157 ol, ul, li, bdi, output {
1158 unicode-bidi: -webkit-isolate;
1159 }
1160
1157 /* page */ 1161 /* page */
1158 1162
1159 @page { 1163 @page {
1160 /* FIXME: Define the right default values for page properties. */ 1164 /* FIXME: Define the right default values for page properties. */
1161 size: auto; 1165 size: auto;
1162 margin: auto; 1166 margin: auto;
1163 padding: 0px; 1167 padding: 0px;
1164 border-width: 0px; 1168 border-width: 0px;
1165 } 1169 }
1166 1170
1167 /* noscript is handled internally, as it depends on settings. */ 1171 /* noscript is handled internally, as it depends on settings. */
1168 1172
OLDNEW
« no previous file with comments | « LayoutTests/fast/text/international/unicode-bidi-isolate-block-elements.html ('k') | Source/core/html/HTMLElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698