Chromium Code Reviews| Index: LayoutTests/fast/css/all-shorthand-expected.html |
| diff --git a/LayoutTests/fast/css/all-shorthand-expected.html b/LayoutTests/fast/css/all-shorthand-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..efea75559e7bd3c7dac5f26b52838fd73d3d7086 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css/all-shorthand-expected.html |
| @@ -0,0 +1,50 @@ |
| +<!DOCTYPE html> |
| +<html> |
|
esprehn
2014/06/12 00:36:44
Leave out html, head and body.
|
| +<head> |
| +<style> |
| +#target1 { display: initial; color: green; background: initial; } |
| + |
| +#parent { color: green; } |
| +#target2 { display: inherit; color: inherit; background: inherit; } |
| + |
| +#target3 { display: initial; color: green; background: initial; } |
| + |
| +#target4 { display: initial; color: initial; background: initial; } |
| + |
| +#target5 { display: initial; color: green; background: initial; } |
| + |
| +#target6 { display: initial; color: initial; background: initial; } |
| + |
| +#target7 { display: initial; direction: rtl; } |
| + |
| +#target8 { display: initial; direction: rtl; } |
| + |
| +#parent9 { color: green; } |
| +#target9 { display: initial; color: inherit; } |
| +</style> |
| +</head> |
| +<body> |
| + <div id='target1'>green color, no background-color</div> |
| + |
| + <div id='parent'> |
| + <div id='target2'>green color, no background-color</div> |
| + </div> |
| + |
| + <div id='target3'>green color</div> |
| + |
| + <div id='target4'>not red color</div> |
| + |
| + <div id='target5'>green color, no background-color</div> |
| + |
| + <div id='target6'>not red color</div> |
| + |
| + <div id='target7'>direction is rtl</div> |
| + |
| + <div id='target8'>direction is rtl</div> |
| + |
| + <div id='parent9'> |
| + <div id='target9'>green color</div> |
| + </div> |
| +</body> |
| +</html> |
| + |