framebusting_intervention_frame.html (250B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Framebusting Intervention - Frame</title> 6 </head> 7 <body> 8 <script> 9 if (self != top) { 10 window.top.location = window.location; 11 } 12 </script> 13 </body> 14 </html>