Changeset 53773 in webkit


Ignore:
Timestamp:
Jan 23, 2010 5:50:42 PM (14 years ago)
Author:
mitz@apple.com
Message:

<rdar://problem/7569820> svg/custom/text-zoom.xhtml fails on Windows
https://bugs.webkit.org/show_bug.cgi?id=34006

Reviewed by Maciej Stachowiak.

WebKit/win:

  • WebPreferences.cpp:

(WebPreferences::initializeDefaultSettings): Added WebKitZoomsTextOnlyPreferenceKey
with a default value of true.

LayoutTests:

  • platform/win/svg/custom/text-zoom-expected.txt: Removed.
Location:
trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53770 r53773  
     12010-01-23  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        <rdar://problem/7569820> svg/custom/text-zoom.xhtml fails on Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=34006
     7
     8        * platform/win/svg/custom/text-zoom-expected.txt: Removed.
     9
    1102010-01-23  Robert Hogan  <robert@roberthogan.net>
    211
  • trunk/WebKit/win/ChangeLog

    r53583 r53773  
     12010-01-23  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        <rdar://problem/7569820> svg/custom/text-zoom.xhtml fails on Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=34006
     7
     8        * WebPreferences.cpp:
     9        (WebPreferences::initializeDefaultSettings): Added WebKitZoomsTextOnlyPreferenceKey
     10        with a default value of true.
     11
    1122010-01-20  Steve Falkenburg  <sfalken@apple.com>
    213
  • trunk/WebKit/win/WebPreferences.cpp

    r52443 r53773  
    11/*
    2  * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc.  All rights reserved.
     2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc.  All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    213213    CFDictionaryAddValue(defaults, CFSTR(WebKitLocalStorageEnabledPreferenceKey), kCFBooleanTrue);
    214214    CFDictionaryAddValue(defaults, CFSTR(WebKitExperimentalNotificationsEnabledPreferenceKey), kCFBooleanFalse);
     215    CFDictionaryAddValue(defaults, CFSTR(WebKitZoomsTextOnlyPreferenceKey), kCFBooleanTrue);
    215216    CFDictionaryAddValue(defaults, CFSTR(WebKitAllowAnimatedImagesPreferenceKey), kCFBooleanTrue);
    216217    CFDictionaryAddValue(defaults, CFSTR(WebKitAllowAnimatedImageLoopingPreferenceKey), kCFBooleanTrue);
Note: See TracChangeset for help on using the changeset viewer.