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

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

Issue 624033002: 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 6 years, 2 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 * 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 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 display: inline-block; 1044 display: inline-block;
1045 width: 0.66em; 1045 width: 0.66em;
1046 height: 0.66em; 1046 height: 0.66em;
1047 -webkit-margin-end: 0.4em; 1047 -webkit-margin-end: 0.4em;
1048 } 1048 }
1049 1049
1050 template { 1050 template {
1051 display: none 1051 display: none
1052 } 1052 }
1053 1053
1054 bdi, output {
1055 unicode-bidi: -webkit-isolate;
1056 }
1057
1058 bdo { 1054 bdo {
1059 unicode-bidi: bidi-override; 1055 unicode-bidi: bidi-override;
1060 } 1056 }
1061 1057
1062 textarea[dir=auto i] { 1058 textarea[dir=auto i] {
1063 unicode-bidi: -webkit-plaintext; 1059 unicode-bidi: -webkit-plaintext;
1064 } 1060 }
1065 1061
1062 address, blockquote, center, div, figure, figcaption, footer, form,
1063 header, hr, legend, listing, p, plaintext, pre, summary, xmp, article,
1064 aside, h1, h2, h3, h4, h5, h6, hgroup, main, nav, section, table, caption,
1065 colgroup, col, thead, tbody, tfoot, tr, td, th, dir, dd, dl, dt, menu,
1066 ol, ul, li, bdi, output {
1067 unicode-bidi: -webkit-isolate;
1068 }
1069
1066 dialog:not([open]) { 1070 dialog:not([open]) {
1067 display: none 1071 display: none
1068 } 1072 }
1069 1073
1070 dialog { 1074 dialog {
1071 position: absolute; 1075 position: absolute;
1072 left: 0; 1076 left: 0;
1073 right: 0; 1077 right: 0;
1074 width: -webkit-fit-content; 1078 width: -webkit-fit-content;
1075 height: -webkit-fit-content; 1079 height: -webkit-fit-content;
(...skipping 18 matching lines...) Expand all
1094 @page { 1098 @page {
1095 /* FIXME: Define the right default values for page properties. */ 1099 /* FIXME: Define the right default values for page properties. */
1096 size: auto; 1100 size: auto;
1097 margin: auto; 1101 margin: auto;
1098 padding: 0px; 1102 padding: 0px;
1099 border-width: 0px; 1103 border-width: 0px;
1100 } 1104 }
1101 1105
1102 /* noscript is handled internally, as it depends on settings. */ 1106 /* noscript is handled internally, as it depends on settings. */
1103 1107
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