Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: LayoutTests/fast/css/cache/matched-properties-cache-partial-match.html

Issue 1251523003: Delete AuthorStyleInfo and move its data into ComputedStyle.RareNonInheritedData. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use html expectation instead Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698