~ubuntu-branches/ubuntu/saucy/gnash/saucy

« back to all changes in this revision

Viewing changes to plugin/test/baseuri/test_base.html

  • Committer: Package Import Robot
  • Author(s): Micah Gersten
  • Date: 2011-09-12 00:15:04 UTC
  • mfrom: (1.1.16 upstream) (3.1.19 sid)
  • Revision ID: package-import@ubuntu.com-20110912001504-evozlicg8krf2p6x
Tags: 0.8.10~git20110618-3ubuntu1
* Merge from debian unstable. (LP:# 847552) Remaining changes:
  - Use mozilla-flashplugin as the alternative for now
  - Set alternative priority to 50 so that it matches Adobe Flash's priority
  - Change xulrunner-dev build dep to firefox-dev
  - add libav 0.7 patch
* Drop the following changes obsoleted by the Debian updates
  - Add build-dep on libspeexdsp-dev and libxv-dev; Fixes FTBFS
  - Remove configure code for libpthread check; Fixes FTBFS w/multiarch paths

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<base href="http://localhost/test/sub/" />
 
2
 
 
3
<script>
 
4
document.write('window.location.href: '+window.location.href);
 
5
document.write('<br>');
 
6
document.write('document.baseURI: '+document.baseURI);
 
7
</script>
 
8
 
 
9
<hr/>
 
10
 
 
11
 
 
12
<embed type="application/x-shockwave-flash"
 
13
 border="1"
 
14
 src="test.swf"
 
15
 height="100" width="400">
 
16
src="test.swf" no base (expect XML:sub)
 
17
 
 
18
<hr/>
 
19
 
 
20
<embed type="application/x-shockwave-flash"
 
21
 border="1"
 
22
 src="test.swf"
 
23
 height="100" width="400"
 
24
 base="..">
 
25
src="test.swf" base=".." (expect XML:root)
 
26
 
 
27
<hr/>
 
28
 
 
29
<embed type="application/x-shockwave-flash"
 
30
 border="1"
 
31
 src="../test.swf"
 
32
 height="100" width="400">
 
33
src="../test.swf" no base (expect XML:sub)
 
34
 
 
35
<hr/>
 
36
 
 
37
<a href="../test.html">unbased</a>
 
38
|
 
39
<a href="test.html">sub</a>
 
40