WCAG 2.0 says:
(1.4.4) Resize text: Except for captions and images of text, text can be resized without assistive technology up to 200 percent without loss of content or functionality. (Level AA)
And elaborates with:
The scaling of content is primarily a user agent responsibility.
and:
The author's responsibility is to create Web content that does not prevent the user agent from scaling the content effectively.
Internet Explorer's 'Text Size' option does not resize text coded with a pixel based font size. Therfore, to conform with the accessibility guidelines, we authours have traditionally avoided using pixel based font-sizes in CSS, opting for the more difficult em based font-sizes instead.
But since version 7, Internet Explorer has provided an alternative method to increase text size - the 'Zoom' option - which works with pixel-based font sizes.
Am I legally obliged to continue to support IE's Text Size feature when there is an alternative 'Zoom' feature in the browser settings?
WCAG 2 goes on to say:
If the author is using a technology whose user agents do not provide zoom support, the author is responsible to provide this type of functionality directly or to provide content that works with the type of functionality provided by the user agent.
Based in user stats, I no longer support IE6. Does this have any bearing on the answer? I no longer support IE 3 or Netscape 1 either for that matter, but these browsers seem less of an issue.
Thanks for the responses. Everything you say I agree with but i think the crux of my question has been lost so let be add some context.
I work on a large corporate site which has been around for more than a decade, has tens of thousands of pages, hundreds of CSS files of varying sizes (yes, we know) and font sizes set in pixels (again we know)
Pixel fonts mean the 'Text Size' browser setting in IE (even IE10) will not resize the text. As Robooneus rightly says ems will inherit the browser font size setting and are the better option, but pixels will not.
As a result, any user who needs bigger text in order to access our services, who is using any version of IE, will not be able to increase the font size using the 'text size' setting, but will be able to zoom the page if they have IE7 or above.
Am I legally obliged to continue to support IE's Text Size feature when there is an alternative 'Zoom' feature in the browser settings? For example, a user may be restricted to using an old browser such as IE6, or may not want to zoom the page beyond the size of the screen.