OLD | NEW |
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 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1099 display: inline-block; | 1099 display: inline-block; |
1100 width: 0.66em; | 1100 width: 0.66em; |
1101 height: 0.66em; | 1101 height: 0.66em; |
1102 margin-right: 0.4em; | 1102 margin-right: 0.4em; |
1103 } | 1103 } |
1104 | 1104 |
1105 template { | 1105 template { |
1106 display: none | 1106 display: none |
1107 } | 1107 } |
1108 | 1108 |
1109 bdi, output { | |
1110 unicode-bidi: -webkit-isolate; | |
1111 } | |
1112 | |
1113 bdo { | 1109 bdo { |
1114 unicode-bidi: bidi-override; | 1110 unicode-bidi: bidi-override; |
1115 } | 1111 } |
1116 | 1112 |
1117 textarea[dir=auto] { | 1113 textarea[dir=auto] { |
1118 unicode-bidi: -webkit-plaintext; | 1114 unicode-bidi: -webkit-plaintext; |
1119 } | 1115 } |
1120 | 1116 |
| 1117 address, blockquote, center, div, figure, figcaption, footer, form, |
| 1118 header, hr, legend, listing, p, plaintext, pre, summary, xmp, article, |
| 1119 aside, h1, h2, h3, h4, h5, h6, hgroup, main, nav, section, table, caption, |
| 1120 colgroup, col, thead, tbody, tfoot, tr, td, th, dir, dd, dl, dt, menu, |
| 1121 ol, ul, li, bdi, output { |
| 1122 unicode-bidi: -webkit-isolate; |
| 1123 } |
| 1124 |
1121 /* page */ | 1125 /* page */ |
1122 | 1126 |
1123 @page { | 1127 @page { |
1124 /* FIXME: Define the right default values for page properties. */ | 1128 /* FIXME: Define the right default values for page properties. */ |
1125 size: auto; | 1129 size: auto; |
1126 margin: auto; | 1130 margin: auto; |
1127 padding: 0px; | 1131 padding: 0px; |
1128 border-width: 0px; | 1132 border-width: 0px; |
1129 } | 1133 } |
1130 | 1134 |
1131 /* noscript is handled internally, as it depends on settings. */ | 1135 /* noscript is handled internally, as it depends on settings. */ |
1132 | 1136 |
OLD | NEW |