Changeset 121651 in webkit


Ignore:
Timestamp:
Jul 1, 2012 7:55:42 PM (12 years ago)
Author:
jamesr@google.com
Message:

Unreviewed, rolling out r121635.
http://trac.webkit.org/changeset/121635
https://bugs.webkit.org/show_bug.cgi?id=90286

Breaks compile on clang error: in-class initializer for static
data member of type 'const float' is a GNU extension
[-Werror,-Wgnu]

Source/WebCore:

  • dom/ViewportArguments.h:

(ViewportArguments):

LayoutTests:

  • platform/efl/TestExpectations:
  • platform/gtk/TestExpectations:
  • platform/qt/TestExpectations:
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r121645 r121651  
     12012-07-01  James Robinson  <jamesr@chromium.org>
     2
     3        Unreviewed, rolling out r121635.
     4        http://trac.webkit.org/changeset/121635
     5        https://bugs.webkit.org/show_bug.cgi?id=90286
     6
     7        Breaks compile on clang error: in-class initializer for static
     8        data member of type 'const float' is a GNU extension
     9        [-Werror,-Wgnu]
     10
     11        * platform/efl/TestExpectations:
     12        * platform/gtk/TestExpectations:
     13        * platform/qt/TestExpectations:
     14
    1152012-07-01  Dan Bernstein  <mitz@apple.com>
    216
  • trunk/LayoutTests/platform/efl/TestExpectations

    r121635 r121651  
    716716BUGWK90007 : http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html = TEXT
    717717
     718// Failing after r121555
     719BUGWK90286 : fast/viewport/viewport-91.html = TEXT
     720
    718721BUGWK90334 : css3/flexbox/anonymous-block.html = IMAGE
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r121635 r121651  
    12401240BUGWK90007 : http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html = TEXT
    12411241
     1242// Failing after r121555
     1243BUGWK90286 : fast/viewport/viewport-91.html = TEXT
     1244
    12421245BUGWK90334 : css3/flexbox/anonymous-block.html = IMAGE
    12431246
  • trunk/LayoutTests/platform/qt/TestExpectations

    r121635 r121651  
    102102
    103103BUGWK90007 : http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html = TEXT
     104
     105// Failing after r121555
     106BUGWK90286 : fast/viewport/viewport-91.html = TEXT
  • trunk/Source/WebCore/ChangeLog

    r121646 r121651  
     12012-07-01  James Robinson  <jamesr@chromium.org>
     2
     3        Unreviewed, rolling out r121635.
     4        http://trac.webkit.org/changeset/121635
     5        https://bugs.webkit.org/show_bug.cgi?id=90286
     6
     7        Breaks compile on clang error: in-class initializer for static
     8        data member of type 'const float' is a GNU extension
     9        [-Werror,-Wgnu]
     10
     11        * dom/ViewportArguments.h:
     12        (ViewportArguments):
     13
    1142012-07-01  Timothy Hatcher  <timothy@apple.com>
    215
  • trunk/Source/WebCore/dom/ViewportArguments.h

    r121635 r121651  
    111111    // FIXME: We're going to keep this constant around until all embedders
    112112    // refactor their code to no longer need it.
    113     static const float deprecatedTargetDPI = 160;
     113    static const int deprecatedTargetDPI = 160;
    114114};
    115115
Note: See TracChangeset for help on using the changeset viewer.