~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebKit/chromium/tests/data/pageserialization/top_frame.html

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
<!--
 
3
    This page is used to test that WebPageSerializer::retrieveAllResources retrieves
 
4
    correctly the expected resources when dealing with multiple frames. 
 
5
-->
 
6
 
 
7
<body>
 
8
 
 
9
<!-- Resources used by a frame and a tag should be only reported once -->
 
10
<iframe src="awesome.png"></iframe>
 
11
<img src="awesome.png"/>
 
12
 
 
13
<iframe src="simple_iframe.html"></iframe>
 
14
<iframe src="simple_iframe.html"></iframe>
 
15
 
 
16
<!-- Object tags can be used to create iframes -->
 
17
 
 
18
<object data="object_iframe.html"></object>
 
19
<object data="flash.swf"></object>
 
20
 
 
21
<!-- Embed tags can be used to create iframes as well -->
 
22
<embed src="embed_iframe.html"></object>
 
23
<!--
 
24
<embed src="music.mid"></embed>
 
25
-->
 
26
</body>
 
27
 
 
28
</html>