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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <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.
2 <head>
3 <style type="text/css">
Timothy Loh 2015/08/25 08:08:20 <style>
meade_UTC10 2015/08/25 08:22:51 Done.
4 .div1 {
5 cursor: pointer;
6 }
7 .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.
8 border: 1px solid transparent;
9 background: none;
10 }
11 </style>
12 </head>
13 <body>
14 <div class="div1">
15 <button class="button">hi</button>
16 </div>
17 <div>
18 <button class="button">hi</button>
19 </div>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698