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

Side by Side Diff: LayoutTests/inspector/elements/styles-1/edit-value-url-with-color.html

Issue 1181773007: Devtools: Add tooltip title for bezier icon (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | Source/devtools/front_end/elements/StylesPopoverHelper.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../../http/tests/inspector/elements-test.js"></script> 4 <script src="../../../http/tests/inspector/elements-test.js"></script>
5 <script> 5 <script>
6 6
7 function test() 7 function test()
8 { 8 {
9 var maxIndex = 11; 9 var maxIndex = 11;
10 var idIndex = 1; 10 var idIndex = 1;
11 11
12 WebInspector.ColowSwatchPopoverIcon._colorFormat = function() { 12 WebInspector.ColorSwatchPopoverIcon._colorFormat = function() {
13 return WebInspector.Color.Format.RGB; 13 return WebInspector.Color.Format.RGB;
14 }; 14 };
15 15
16 selectDivAndEditValue(); 16 selectDivAndEditValue();
17 17
18 function selectDivAndEditValue() 18 function selectDivAndEditValue()
19 { 19 {
20 InspectorTest.selectNodeAndWaitForStyles("inspected" + idIndex++, editCa llback); 20 InspectorTest.selectNodeAndWaitForStyles("inspected" + idIndex++, editCa llback);
21 } 21 }
22 22
(...skipping 24 matching lines...) Expand all
47 <div id="inspected5" style="background: green url(white)">"green url(white)" bac kground</div> 47 <div id="inspected5" style="background: green url(white)">"green url(white)" bac kground</div>
48 <div id="inspected6" style="background: url(white) green">"url(white) green" bac kground</div> 48 <div id="inspected6" style="background: url(white) green">"url(white) green" bac kground</div>
49 <div id="inspected7" style="background: url(white) green, url(green)">"url(white ) green, url(green)" background</div> 49 <div id="inspected7" style="background: url(white) green, url(green)">"url(white ) green, url(green)" background</div>
50 <div id="inspected8" style="background: url(white), url(green)">"url(white), url (green)" background</div> 50 <div id="inspected8" style="background: url(white), url(green)">"url(white), url (green)" background</div>
51 <div id="inspected9" style="background: hsl(0, 50%, 50%) url(white)">"hsl(0, 50% , 50%) url(white)" background</div> 51 <div id="inspected9" style="background: hsl(0, 50%, 50%) url(white)">"hsl(0, 50% , 50%) url(white)" background</div>
52 <div id="inspected10" style="background: url(white) hsl(0, 50%, 50%)">"url(white ) hsl(0, 50%, 50%)" background</div> 52 <div id="inspected10" style="background: url(white) hsl(0, 50%, 50%)">"url(white ) hsl(0, 50%, 50%)" background</div>
53 <div id="inspected11" style="background: url(../black/white.png)">"url(../black/ white.png)" background</div> 53 <div id="inspected11" style="background: url(../black/white.png)">"url(../black/ white.png)" background</div>
54 54
55 </body> 55 </body>
56 </html> 56 </html>
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/elements/StylesPopoverHelper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698