| 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..f3b6d4a6c12e8784f4b8b15836f22b270ed57570 | 
| --- /dev/null | 
| +++ b/LayoutTests/fast/css/all-shorthand-expected.html | 
| @@ -0,0 +1,45 @@ | 
| +<!DOCTYPE html> | 
| +<style> | 
| +#target1 { color: red; background-color: currentColor; } | 
| +#target1 { color: green; } | 
| + | 
| +#parent { color: green; } | 
| +#target2 { color: red; background-color: currentColor; } | 
| + | 
| +#target3 { color: green !important; } | 
| + | 
| +#target4 { color: red !important; } | 
| +#target4 { background-color: red; } | 
| + | 
| +#target5 { background-color: red; } | 
| +#target5 { color: green !important; } | 
| + | 
| +#target6 { color: red !important; } | 
| + | 
| +#target7 { direction: rtl; } | 
| + | 
| +#target8 { direction: rtl !important; } | 
| + | 
| +#parent9 { color: green; } | 
| +</style> | 
| +<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> | 
|  |