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

Side by Side Diff: LayoutTests/css3/filters/reference-filter-update-after-remove.html

Issue 14987004: Switching CSS Variables over to RuntimeEnabledFeatures (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/css/variables/border-width.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <script>
2 internals.settings.setCSSVariablesEnabled(true);
3 </script>
4 <style> 1 <style>
5 body { 2 body {
6 -webkit-var-a: url(1); 3 -webkit-var-a: url(1);
7 -webkit-filter: -webkit-var(a); 4 -webkit-filter: -webkit-var(a);
8 } 5 }
9 body::first-letter { 6 body::first-letter {
10 cursor: inherit; 7 cursor: inherit;
11 } 8 }
12 </style> 9 </style>
13 <script> 10 <script>
(...skipping 12 matching lines...) Expand all
26 document.addEventListener("DOMContentLoaded", init, false); 23 document.addEventListener("DOMContentLoaded", init, false);
27 function edit() { 24 function edit() {
28 document.designMode = "on"; 25 document.designMode = "on";
29 r = document.createRange(); 26 r = document.createRange();
30 r.selectNodeContents(rect); 27 r.selectNodeContents(rect);
31 window.getSelection().addRange(r); 28 window.getSelection().addRange(r);
32 window.getSelection().deleteFromDocument(); 29 window.getSelection().deleteFromDocument();
33 if (window.testRunner) testRunner.notifyDone(); 30 if (window.testRunner) testRunner.notifyDone();
34 } 31 }
35 </script> 32 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/variables/border-width.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698