iframe-scrolling-attribute-values.html (1251B)
1 <!DOCTYPE html> 2 <title>The scrolling attribute</title> 3 <link rel="author" href="mailto:masonf@chromium.org"> 4 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-page"> 5 <link rel="match" href="iframe-scrolling-attribute-values-ref.html"> 6 <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-4"> 7 8 <style> 9 iframe { 10 width: 100px; 11 height: 100px; 12 } 13 </style> 14 15 <p>This page tests the behavior of the <tt>scrolling</tt> attribute on 16 <tt><iframe></tt> elements which contain a page large enough to need to 17 be scrolled.</p> 18 19 <iframe src="support/big-page.html"></iframe> 20 <iframe src="support/big-page.html" scrolling></iframe> 21 <iframe src="support/big-page.html" scrolling=""></iframe> 22 <iframe src="support/big-page.html" scrolling="auto"></iframe> 23 <iframe src="support/big-page.html" scrolling="yes"></iframe> 24 <iframe src="support/big-page.html" scrolling="no"></iframe> 25 <iframe src="support/big-page.html" scrolling="noscroll"></iframe> 26 <iframe src="support/big-page.html" scrolling="off"></iframe> 27 <iframe src="support/big-page.html" scrolling="NoScRoLl"></iframe> 28 <iframe src="support/big-page.html" scrolling="bogus"></iframe> 29 <iframe src="support/big-page.html" scrolling="1234"></iframe>