summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dom/css-dom-read-expected.txt
blob: 16184f9eeeb90280655a0c759365c4a46e7b1717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Style as specified in the style element:
.one { display: block; }
.two { display: inline; }
.three { display: list-item; list-style-type: square; margin-left: 3em; }
.four { display: none; color: red; }
I { display: block; }
Serialized style, using CSS DOM:
.one { display: block; }
.two { display: inline; }
.three { display: list-item; list-style-type: square; margin-left: 3em; }
.four { display: none; color: red; }
i { display: block; }