Changeset 24097 in webkit
- Timestamp:
- Jul 8, 2007, 8:37:19 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/LayoutTests/ChangeLog ¶
r24094 r24097 1 2007-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 1 17 2007-07-08 Mitz Pettel <mitz@webkit.org> 2 18 -
TabularUnified trunk/LayoutTests/qt/ChangeLog ¶
r23783 r24097 1 2007-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 1 10 2007-06-21 Lars Knoll <lars@trolltech.com> 2 11 -
TabularUnified trunk/LayoutTests/qt/Skipped ¶
r23783 r24097 53 53 fast/css/acid2-pixel.html 54 54 fast/css/acid2.html 55 fast/css/ignore-text-zoom 55 56 fast/css/resize-corner-tracking.html 56 57 -
TabularUnified trunk/LayoutTests/win/Skipped ¶
r24066 r24097 64 64 fast/css/beforeSelectorOnCodeElement.html 65 65 fast/css/font_property_normal.html 66 fast/css/ignore-text-zoom 66 67 fast/css/rtl-ordering.html 67 68 fast/css/text-security.html -
TabularUnified trunk/WebCore/ChangeLog ¶
r24096 r24097 1 2007-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 1 16 2007-07-08 Darin Adler <darin@apple.com> 2 17 -
TabularUnified trunk/WebCore/css/cssstyleselector.cpp ¶
r23916 r24097 3148 3148 // Scale for the font zoom factor only for types other than "em" and "ex", since those are 3149 3149 // 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()) { 3151 3151 multiplier = m_document->frame()->zoomFactor() / 100.0; 3152 3152 } -
TabularUnified trunk/WebCore/page/inspector/inspector.css ¶
r23780 r24097 34 34 font-family: Lucida Grande, sans-serif; 35 35 margin: 0; 36 -webkit-text-size-adjust: none; 36 37 } 37 38 -
TabularUnified trunk/WebKitTools/ChangeLog ¶
r24086 r24097 1 2007-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 1 18 2007-07-07 Mark Rowe <mrowe@apple.com> 2 19 -
TabularUnified trunk/WebKitTools/DumpRenderTree/DumpRenderTree.m ¶
r24086 r24097 1469 1469 1470 1470 [(EditingDelegate *)[[mainFrame webView] editingDelegate] setAcceptsEditing:YES]; 1471 [[mainFrame webView] makeTextStandardSize:nil]; 1471 1472 [[mainFrame webView] setTabKeyCyclesThroughElements: YES]; 1472 1473 done = NO; -
TabularUnified trunk/WebKitTools/DumpRenderTree/EventSendingController.m ¶
r21523 r24097 93 93 @"submit", 94 94 @"textInput", 95 @"textzoomin", 96 @"textzoomout", 95 97 @"unload", 96 98 @"zoom", … … 108 110 || aSelector == @selector(enableDOMUIEventLogging:) 109 111 || aSelector == @selector(fireKeyboardEventsToElement:) 110 || aSelector == @selector(clearKillRing)) 112 || aSelector == @selector(clearKillRing) 113 || aSelector == @selector(textZoomIn) 114 || aSelector == @selector(textZoomOut)) 111 115 return NO; 112 116 return YES; … … 198 202 down = YES; 199 203 } 204 } 205 206 - (void)textZoomIn 207 { 208 [[mainFrame webView] makeTextLarger:self]; 209 } 210 211 - (void)textZoomOut 212 { 213 [[mainFrame webView] makeTextSmaller:self]; 200 214 } 201 215
Note:
See TracChangeset
for help on using the changeset viewer.