haikuwebkit/LayoutTests/fast/dom/css-dom-read-expected.txt

14 lines
443 B
Plaintext

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; }