summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/ignore-text-zoom.html
blob: 6016f1a979c225c96cec27e70a95dac68f4aa481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<head>
<style>
.ignore {
-webkit-text-size-adjust: none;
}
</style>
</head>
<div class="ignore">This text should have default font size</div>
<div>This text should have larger than default font size</div>
<script>
if (window.eventSender) {
    eventSender.textZoomIn();
    eventSender.textZoomIn();
}
</script>