[gtk+] Fix the css style font test
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Fix the css style font test
- Date: Mon, 18 Apr 2016 15:47:28 +0000 (UTC)
commit 5993875d38ce318c6b391d6dab5182a7400a8bdc
Author: Matthias Clasen <mclasen redhat com>
Date: Mon Apr 18 11:40:10 2016 -0400
Fix the css style font test
Setting the font: shorthand to something like smaller is not
in line with the css spec. Just set the font-size: property
for this.
Also fix the other font: shorthand to specify size and family
according to the css spec.
testsuite/css/style/font.css | 4 ++--
testsuite/css/style/font.nodes | 12 ++++++------
2 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/testsuite/css/style/font.css b/testsuite/css/style/font.css
index 86b2ba0..9c99623 100644
--- a/testsuite/css/style/font.css
+++ b/testsuite/css/style/font.css
@@ -1,7 +1,7 @@
box {
- font: "Comic Sans 10";
+ font: 10px "Comic Sans";
}
label {
- font: smaller;
+ font-size: smaller;
}
diff --git a/testsuite/css/style/font.nodes b/testsuite/css/style/font.nodes
index 02044b4..ef23f94 100644
--- a/testsuite/css/style/font.nodes
+++ b/testsuite/css/style/font.nodes
@@ -1,12 +1,12 @@
[window.background:dir(ltr)]
decoration:dir(ltr)
box.horizontal:dir(ltr)
- font-size: 10px; /* font.css:2:23 */
- font-family: "\"Comic Sans 10\""; /* font.css:2:23 */
- font-style: normal; /* font.css:2:23 */
- font-variant: normal; /* font.css:2:23 */
- font-weight: normal; /* font.css:2:23 */
- font-stretch: normal; /* font.css:2:23 */
+ font-size: 10px; /* font.css:2:25 */
+ font-family: "Comic Sans"; /* font.css:2:25 */
+ font-style: normal; /* font.css:2:25 */
+ font-variant: normal; /* font.css:2:25 */
+ font-weight: normal; /* font.css:2:25 */
+ font-stretch: normal; /* font.css:2:25 */
label:dir(ltr)
font-size: 8.3333333333333339px; /* font.css:6:20 */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]