Source/WebCore/ChangeLog

 12012-06-29 Konrad Piascik <kpiascik@rim.com>
 2
 3 [EFL] [GTK] [QT] fast/viewport/viewport-91.html is failing after r121555
 4 https://bugs.webkit.org/show_bug.cgi?id=90286
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Since the deprecatedTargetDPI was an int and the deviceDPI was also an int the result
 9 was truncated. Changed deprecatedTargetDPI to a float value. Viewport test 91 now passes.
 10
 11 * dom/ViewportArguments.h:
 12 (ViewportArguments):
 13
1142012-06-28 James Robinson <jamesr@chromium.org>
215
316 [chromium] Remove mapRect and mapQuad from WebTransformationMatrix

Source/WebCore/dom/ViewportArguments.h

@@struct ViewportArguments {
110110 }
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 int deprecatedTargetDPI = 160;
 113 static const float deprecatedTargetDPI = 160.0;
114114};
115115
116116ViewportAttributes computeViewportAttributes(ViewportArguments args, int desktopWidth, int deviceWidth, int deviceHeight, float devicePixelRatio, IntSize visibleViewport);

LayoutTests/ChangeLog

 12012-06-29 Konrad Piascik <kpiascik@rim.com>
 2
 3 [EFL] [GTK] [QT] fast/viewport/viewport-91.html is failing after r121555
 4 https://bugs.webkit.org/show_bug.cgi?id=90286
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Unskip now passing tests.
 9
 10 * platform/efl/TestExpectations:
 11 * platform/gtk/TestExpectations:
 12 * platform/qt/TestExpectations:
 13
1142012-06-29 Zan Dobersek <zandobersek@gmail.com>
215
316 Unreviewed GTK gardening, adding a new baseline required after r121555.

LayoutTests/platform/efl/TestExpectations

@@BUGWK88984 : css3/flexbox/flexitem.html = TEXT
714714BUGWK89845 : fast/forms/input-set-composition-scroll.html = TEXT
715715
716716BUGWK90007 : http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html = TEXT
717 
718 // Failing after r121555
719 BUGWK90286 : fast/viewport/viewport-91.html = TEXT

LayoutTests/platform/gtk/TestExpectations

@@BUGWK89845 : fast/forms/input-set-composition-scroll.html = TEXT
12391239
12401240BUGWK90007 : http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html = TEXT
12411241
1242 // Failing after r121555
1243 BUGWK90286 : fast/viewport/viewport-91.html = TEXT
1244 
12451242//////////////////////////////////////////////////////////////////////////////////////////
12461243// End of Tests failing
12471244//////////////////////////////////////////////////////////////////////////////////////////

LayoutTests/platform/qt/TestExpectations

@@BUGWK85463 SKIP : editing/inserting/typing-space-to-trigger-smart-link.html = PA
101101BUGWK88794 SKIP : webaudio/codec-tests = PASS
102102
103103BUGWK90007 : http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html = TEXT
104 
105 // Failing after r121555
106 BUGWK90286 : fast/viewport/viewport-91.html = TEXT