Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-style-change-expected.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-style-change-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-style-change-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9abab779075adff49d0805cc71236cd8ef39cfe2 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-style-change-expected.html |
| @@ -0,0 +1,24 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<style> |
| + body { |
| + margin: 0; |
| + } |
| + |
| + .box { |
| + height: 50px; |
| + width: 100%; |
| + } |
| + |
| + .relative { |
| + position: fixed; |
| + top: 50px; |
| + background-color: green; |
|
flackr
2017/02/22 14:45:42
Can we merge .relative and .box since there is onl
smcgruer
2017/02/22 15:26:31
Done.
|
| + } |
| +</style> |
| +</head> |
| +<body> |
| + <div class="relative box"></div> |
| +</body> |
| +</html> |