Index: LayoutTests/fast/css/cache/matched-properties-cache-partial-match.html |
diff --git a/LayoutTests/fast/css/cache/matched-properties-cache-partial-match.html b/LayoutTests/fast/css/cache/matched-properties-cache-partial-match.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e1598dddebba7c74d10089a11458a5744d5148f9 |
--- /dev/null |
+++ b/LayoutTests/fast/css/cache/matched-properties-cache-partial-match.html |
@@ -0,0 +1,21 @@ |
+<html> |
Timothy Loh
2015/08/25 08:08:20
usually we use <!doctype html> and leave out the h
meade_UTC10
2015/08/25 08:22:51
Done.
|
+ <head> |
+ <style type="text/css"> |
Timothy Loh
2015/08/25 08:08:20
<style>
meade_UTC10
2015/08/25 08:22:51
Done.
|
+.div1 { |
+ cursor: pointer; |
+} |
+.button { |
Timothy Loh
2015/08/25 08:08:20
could just do a tag name selector, i.e. button { .
meade_UTC10
2015/08/25 08:22:51
Done.
|
+ border: 1px solid transparent; |
+ background: none; |
+} |
+ </style> |
+ </head> |
+ <body> |
+ <div class="div1"> |
+ <button class="button">hi</button> |
+ </div> |
+ <div> |
+ <button class="button">hi</button> |
+ </div> |
+ </body> |
+</html> |