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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/quirk-inherit-ua-only.html

Issue 1713513002: Rename -webkit-text to -internal-quirk-inherit, limiting it to UA style (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase; add new (negative) test Created 4 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>The '-internal-quirk-inherit' CSS value is only exposed to UA stylesheets </title>
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <style>
6 #t1 {
7 color: blue;
8 color: -internal-quirk-inherit;
9 }
10 </style>
11 <table id="t1"></table>
12 <table style="color: -internal-quirk-inherit"></table>
13 <script>
14 test(function() {
15 var tables = document.querySelectorAll('table');
16 assert_equals(getComputedStyle(tables[0]).color, 'rgb(0, 0, 255)');
17 assert_equals(tables[1].style.color, '');
18 });
19 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698