chromium/third_party/blink/web_tests/fast/frames/frame-set-zoom.html

<!DOCTYPE>
<html>
    <head>
        <title>Tests that framesets scale according to full page zoom</title>
        <script>
            window.onload = function() {
                if (window.testRunner)
                    testRunner.zoomPageIn();
            };
        </script>
    </head>
    <frameset rows="100,*" border="10">
        <frame id="top_frame" src="data:text/html,<!DOCTYPE html><html><body></body></html>">
        <frame id="bottom_frame" src="data:text/html,<!DOCTYPE html><html><body></body></html>">
    </frameset>
</html>