Changeset 159382 in webkit


Ignore:
Timestamp:
Nov 16, 2013 3:19:24 PM (10 years ago)
Author:
timothy_horton@apple.com
Message:

Checkmarks are shifted down on iPhone at build.webkit.org/dashboard
https://bugs.webkit.org/show_bug.cgi?id=122909

Reviewed by Timothy Hatcher.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/checkmark.svg: Added.
  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/StatusLineView.js:

(StatusLineView.prototype.set repeatCount):

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/StatusLineView.css:

(.status-line.good .bubble.pictogram):
Use an SVG image instead of an obscure font for the checkboxes so they
render identically on all platforms.

Location:
trunk/Tools
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/StatusLineView.js

    r159313 r159382  
    109109
    110110            case StatusLineView.Status.Good:
    111                 this._statusBubbleElement.textContent = "\u2713";
     111                this._statusBubbleElement.textContent = "";
    112112                break;
    113113
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/StatusLineView.css

    r157840 r159382  
    6565
    6666.status-line.good .bubble.pictogram {
    67     font-family: "MonotypeGurmukhi", sans-serif;
    68     line-height: 29px;
     67    background-image: url(../Images/checkmark.svg);
    6968}
    7069
  • trunk/Tools/ChangeLog

    r159364 r159382  
     12013-11-16  Tim Horton  <timothy_horton@apple.com>
     2
     3        Checkmarks are shifted down on iPhone at build.webkit.org/dashboard
     4        https://bugs.webkit.org/show_bug.cgi?id=122909
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/checkmark.svg: Added.
     9        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/StatusLineView.js:
     10        (StatusLineView.prototype.set repeatCount):
     11        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/StatusLineView.css:
     12        (.status-line.good .bubble.pictogram):
     13        Use an SVG image instead of an obscure font for the checkboxes so they
     14        render identically on all platforms.
     15
    1162013-11-15  Tim Horton  <timothy_horton@apple.com>
    217
Note: See TracChangeset for help on using the changeset viewer.