mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Use the document base url when resolving iframe URLs
This commit is contained in:
parent
d9ffefe562
commit
52c6fd5b03
4 changed files with 5473 additions and 3 deletions
|
@ -0,0 +1,9 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>iframe Without Base Tag</title>
|
||||
</head>
|
||||
<body>
|
||||
<iframe src="support/blank.htm">
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>iframe With Base Tag</title>
|
||||
<link rel="match" href="iframe-with-base-ref.html">
|
||||
<base href="support/">
|
||||
</head>
|
||||
<body>
|
||||
<iframe src="blank.htm">
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue