Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / iframe-scrolling-attribute.html
blob3064ac0584218b9a083a62fc343765e978b3e16b
1 <style>
2 iframe {
3 width: 200px;
4 height: 200px;
6 </style>
8 <p>This page tests the behavior of the <tt>scrolling</tt> attribute on
9 <tt>&lt;iframe&gt;</tt> elements which contain a page large enough to need to
10 be scrolled.</p>
12 <iframe src="resources/big-page.html"></iframe>
13 <iframe src="resources/big-page.html" scrolling></iframe>
14 <iframe src="resources/big-page.html" scrolling=""></iframe>
15 <iframe src="resources/big-page.html" scrolling="auto"></iframe>
16 <iframe src="resources/big-page.html" scrolling="yes"></iframe>
17 <iframe src="resources/big-page.html" scrolling="no"></iframe>
18 <iframe src="resources/big-page.html" scrolling="bogus"></iframe>
19 <iframe src="resources/big-page.html" scrolling="1234"></iframe>