Index: LayoutTests/scrollbars/custom-scrollbar-appearance-property.html |
diff --git a/LayoutTests/scrollbars/custom-scrollbar-appearance-property.html b/LayoutTests/scrollbars/custom-scrollbar-appearance-property.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cd45ce04372b5d00a85c3f8da5924c66e32ab5d1 |
--- /dev/null |
+++ b/LayoutTests/scrollbars/custom-scrollbar-appearance-property.html |
@@ -0,0 +1,36 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<style> |
+::-webkit-scrollbar { |
+ width: 16px; |
+ height: 16px; |
+ -webkit-appearance: searchfield-results-decoration; |
+} |
+ |
+::-webkit-scrollbar-track { |
+ background-color: #E3E3E3; |
+ -webkit-appearance: searchfield-cancel-button; |
+} |
+ |
+::-webkit-scrollbar-thumb { |
+ background: black; |
+} |
+ |
+.scroll-container { |
+ overflow: scroll; |
+ width: 50px; |
+ height: 50px; |
+} |
+ |
+.overflowing { |
+ width: 200px; |
+ height: 200px; |
+} |
+</style> |
+</head> |
+<body> |
+PASS if not crashed. |
+<div class="scroll-container"><div class="overflowing"></div></div> |
+</body> |
+</html> |