]> git.wh0rd.org - tt-rss.git/commitdiff
detect whether browser supports iframe.sandbox and allow iframes accordingly; allow...
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Tue, 19 Mar 2013 08:49:55 +0000 (12:49 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Tue, 19 Mar 2013 08:49:55 +0000 (12:49 +0400)
classes/rpc.php
include/functions.php
js/tt-rss.js

index 5d77b1ae8530aa2344c101334d41de391e64ca9c..b297bbade5e3f2dd50a7fafa1d3f47aef87d5913 100644 (file)
@@ -285,6 +285,7 @@ class RPC extends Handler_Protected {
 
        function sanityCheck() {
                $_SESSION["hasAudio"] = $_REQUEST["hasAudio"] === "true";
+               $_SESSION["hasSandbox"] = $_REQUEST["hasSandbox"] === "true";
 
                $reply = array();
 
index 0e5d15eaffbcc7e5f08ea5b0300c46cec7bcde6b..50bdc13ae644d3ffc0d92fe7495b24d43a0c5e0c 100644 (file)
 
                $allowed_elements = array('p', 'br', 'div', 'table', 'tr', 'td', 'th',
                        'ul', 'ol', 'li', 'blockquote', 'span', 'html', 'body', 'a', 'img',
-                       'iframe', 'video', 'audio', 'source');
+                       'video', 'audio', 'source', 'object', 'embed');
+
+               if ($_SESSION['hasSandbox']) array_push($allowed_elements, 'iframe');
 
                $disallowed_attributes = array('id', 'style', 'class');
 
index 5ada64d316309c1b2affc6bcf95588841cf56a72..5968f58eb69dc229999101b4b28af41a596fd105 100644 (file)
@@ -244,9 +244,11 @@ function init() {
                loading_set_progress(20);
 
                var hasAudio = !!((myAudioTag = document.createElement('audio')).canPlayType);
+               var hasSandbox = "sandbox" in document.createElement("iframe");
 
                new Ajax.Request("backend.php", {
-                       parameters: {op: "rpc", method: "sanityCheck", hasAudio: hasAudio},
+                       parameters: {op: "rpc", method: "sanityCheck", hasAudio: hasAudio,
+                               hasSandbox: hasSandbox},
                        onComplete: function(transport) {
                                        backend_sanity_check_callback(transport);
                                } });