Changeset 24097 in webkit


Ignore:
Timestamp:
Jul 8, 2007, 8:37:19 AM (18 years ago)
Author:
rwlbuis
Message:

Reviewed by Mitz.

http://bugs.webkit.org/show_bug.cgi?id=10752
The inspector should not respond to Make Text Smaller/Bigger commands

Use the -webkit-text-size-adjust property to ignore text sizing
and do not take the zoom factor into account for line height when
-webkit-text-size-adjust is set to none.

Location:
trunk
Files:
4 added
10 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/LayoutTests/ChangeLog

    r24094 r24097  
     12007-07-08  Rob Buis  <buis@kde.org>
     2
     3        Reviewed by Mitz.
     4
     5        Testcase for:
     6        http://bugs.webkit.org/show_bug.cgi?id=14209
     7        DRT should be able to deal with text zoom
     8        http://bugs.webkit.org/show_bug.cgi?id=10752
     9        The inspector should not respond to Make Text Smaller/Bigger commands
     10
     11        * fast/css/ignore-text-zoom-expected.checksum: Added.
     12        * fast/css/ignore-text-zoom-expected.png: Added.
     13        * fast/css/ignore-text-zoom-expected.txt: Added.
     14        * fast/css/ignore-text-zoom.html: Added.
     15        * win/Skipped:
     16
    1172007-07-08  Mitz Pettel  <mitz@webkit.org>
    218
  • TabularUnified trunk/LayoutTests/qt/ChangeLog

    r23783 r24097  
     12007-07-08  Rob Buis  <buis@kde.org>
     2
     3        Reviewed by Mitz.
     4
     5        To pass fast/css/ignore-text-zoom textZoomIn/textZoomOut
     6        must be implemented in the qt DumpRenderTree version.
     7
     8        * Skipped:
     9
    1102007-06-21  Lars Knoll <lars@trolltech.com>
    211
  • TabularUnified trunk/LayoutTests/qt/Skipped

    r23783 r24097  
    5353fast/css/acid2-pixel.html
    5454fast/css/acid2.html
     55fast/css/ignore-text-zoom
    5556fast/css/resize-corner-tracking.html
    5657
  • TabularUnified trunk/LayoutTests/win/Skipped

    r24066 r24097  
    6464fast/css/beforeSelectorOnCodeElement.html
    6565fast/css/font_property_normal.html
     66fast/css/ignore-text-zoom
    6667fast/css/rtl-ordering.html
    6768fast/css/text-security.html
  • TabularUnified trunk/WebCore/ChangeLog

    r24096 r24097  
     12007-07-08  Rob Buis  <buis@kde.org>
     2
     3        Reviewed by Mitz.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=10752
     6        The inspector should not respond to Make Text Smaller/Bigger commands
     7
     8        Use the -webkit-text-size-adjust property to ignore text sizing       
     9        and do not take the zoom factor into account for line height when
     10        -webkit-text-size-adjust is set to none.
     11
     12        * css/cssstyleselector.cpp:
     13        (WebCore::CSSStyleSelector::applyProperty):
     14        * page/inspector/inspector.css:
     15
    1162007-07-08  Darin Adler  <darin@apple.com>
    217
  • TabularUnified trunk/WebCore/css/cssstyleselector.cpp

    r23916 r24097  
    31483148            // Scale for the font zoom factor only for types other than "em" and "ex", since those are
    31493149            // already based on the font size.
    3150             if (type != CSSPrimitiveValue::CSS_EMS && type != CSSPrimitiveValue::CSS_EXS && m_document->frame()) {
     3150            if (type != CSSPrimitiveValue::CSS_EMS && type != CSSPrimitiveValue::CSS_EXS && style->textSizeAdjust() && m_document->frame()) {
    31513151                multiplier = m_document->frame()->zoomFactor() / 100.0;
    31523152            }
  • TabularUnified trunk/WebCore/page/inspector/inspector.css

    r23780 r24097  
    3434    font-family: Lucida Grande, sans-serif;
    3535    margin: 0;
     36    -webkit-text-size-adjust: none;
    3637}
    3738
  • TabularUnified trunk/WebKitTools/ChangeLog

    r24086 r24097  
     12007-07-08  Rob Buis  <buis@kde.org>
     2
     3        Reviewed by Mitz.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=14209
     6        DRT should be able to deal with text zoom
     7
     8        Allow increasing/decreasing text zoom using eventSender.
     9
     10        * DumpRenderTree/DumpRenderTree.m:
     11        (runTest):
     12        * DumpRenderTree/EventSendingController.m:
     13        (+[EventSendingController initialize]):
     14        (+[EventSendingController isSelectorExcludedFromWebScript:]):
     15        (-[EventSendingController textZoomIn]):
     16        (-[EventSendingController textZoomOut]):
     17
    1182007-07-07  Mark Rowe  <mrowe@apple.com>
    219
  • TabularUnified trunk/WebKitTools/DumpRenderTree/DumpRenderTree.m

    r24086 r24097  
    14691469
    14701470    [(EditingDelegate *)[[mainFrame webView] editingDelegate] setAcceptsEditing:YES];
     1471    [[mainFrame webView] makeTextStandardSize:nil];
    14711472    [[mainFrame webView] setTabKeyCyclesThroughElements: YES];
    14721473    done = NO;
  • TabularUnified trunk/WebKitTools/DumpRenderTree/EventSendingController.m

    r21523 r24097  
    9393        @"submit",
    9494        @"textInput",
     95        @"textzoomin",
     96        @"textzoomout",
    9597        @"unload",
    9698        @"zoom",
     
    108110            || aSelector == @selector(enableDOMUIEventLogging:)
    109111            || aSelector == @selector(fireKeyboardEventsToElement:)
    110             || aSelector == @selector(clearKillRing))
     112            || aSelector == @selector(clearKillRing)
     113            || aSelector == @selector(textZoomIn)
     114            || aSelector == @selector(textZoomOut))
    111115        return NO;
    112116    return YES;
     
    198202        down = YES;
    199203    }
     204}
     205
     206- (void)textZoomIn
     207{
     208    [[mainFrame webView] makeTextLarger:self];
     209}
     210
     211- (void)textZoomOut
     212{
     213    [[mainFrame webView] makeTextSmaller:self];
    200214}
    201215
Note: See TracChangeset for help on using the changeset viewer.