summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-08-05 14:28:56 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2019-08-05 14:28:56 +0100
commitce27c1e2609687a2a2d71b3ceca82c595d0da005 (patch)
tree566f8b1ca585f8bfde9a5c416fe3f58ceedd3042
parent75ad7863443a4a0e8d53be27bab3e0007c72d510 (diff)
downloadnetsurf-test-ce27c1e2609687a2a2d71b3ceca82c595d0da005.tar.gz
netsurf-test-ce27c1e2609687a2a2d71b3ceca82c595d0da005.tar.bz2
Tests: Add bad SSL iframe.
-rw-r--r--html/bad-ssl-iframe.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/html/bad-ssl-iframe.html b/html/bad-ssl-iframe.html
new file mode 100644
index 0000000..b2ae236
--- /dev/null
+++ b/html/bad-ssl-iframe.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Iframe test</title>
+ <style>
+ html {
+ background: #ccc;
+ }
+ body {
+ padding: 3em;
+ }
+ iframe {
+ width: 700px;
+ height: 500px;
+ border: 1px solid #000;
+ }
+ </style>
+ </head>
+ <body>
+ <iframe src="https://expired.badssl.com/"></iframe>
+ </body>
+</html>