Changeset 211452 in webkit


Ignore:
Timestamp:
Jan 31, 2017 3:24:24 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: add CSS color keyword entries for all grey/gray variations
https://bugs.webkit.org/show_bug.cgi?id=167668

Patch by Devin Rousso <Devin Rousso> on 2017-01-31
Reviewed by Matt Baker.

  • UserInterface/Models/Color.js:

(WebInspector.Color.Keywords):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r211451 r211452  
     12017-01-31  Devin Rousso  <dcrousso+webkit@gmail.com>
     2
     3        Web Inspector: add CSS color keyword entries for all grey/gray variations
     4        https://bugs.webkit.org/show_bug.cgi?id=167668
     5
     6        Reviewed by Matt Baker.
     7
     8        * UserInterface/Models/Color.js:
     9        (WebInspector.Color.Keywords):
     10
    1112017-01-31  Devin Rousso  <dcrousso+webkit@gmail.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Models/Color.js

    r208857 r211452  
    639639    "darkgray": [169, 169, 169],
    640640    "darkgreen": [0, 100, 0],
     641    "darkgrey": [169, 169, 169],
    641642    "darkkhaki": [189, 183, 107],
    642643    "darkmagenta": [139, 0, 139],
     
    649650    "darkslateblue": [72, 61, 139],
    650651    "darkslategray": [47, 79, 79],
     652    "darkslategrey": [47, 79, 79],
    651653    "darkturquoise": [0, 206, 209],
    652654    "darkviolet": [148, 0, 211],
     
    654656    "deepskyblue": [0, 191, 255],
    655657    "dimgray": [105, 105, 105],
     658    "dimgrey": [105, 105, 105],
    656659    "dodgerblue": [30, 144, 255],
    657660    "firebrick": [178, 34, 34],
     
    665668    "green": [0, 128, 0],
    666669    "greenyellow": [173, 255, 47],
     670    "grey": [128, 128, 128],
    667671    "honeydew": [240, 255, 240],
    668672    "hotpink": [255, 105, 180],
     
    679683    "lightcyan": [224, 255, 255],
    680684    "lightgoldenrodyellow": [250, 250, 210],
     685    "lightgray": [211, 211, 211],
    681686    "lightgreen": [144, 238, 144],
    682687    "lightgrey": [211, 211, 211],
     
    686691    "lightskyblue": [135, 206, 250],
    687692    "lightslategray": [119, 136, 153],
     693    "lightslategrey": [119, 136, 153],
    688694    "lightsteelblue": [176, 196, 222],
    689695    "lightyellow": [255, 255, 224],
     
    739745    "slateblue": [106, 90, 205],
    740746    "slategray": [112, 128, 144],
     747    "slategrey": [112, 128, 144],
    741748    "snow": [255, 250, 250],
    742749    "springgreen": [0, 255, 127],
Note: See TracChangeset for help on using the changeset viewer.