Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
1 <?xml version="1.0"?>
2 <svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
3 <script>
4 <![CDATA[
6 function boom()
7 {
8 var anim = document.getElementById("a");
9 var newSvg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
10 var oldSvg = document.removeChild(document.documentElement);
11 document.appendChild(newSvg);
12 document.removeChild(document.documentElement);
13 newSvg.pauseAnimations();
14 document.appendChild(newSvg);
15 newSvg.appendChild(anim);
17 oldSvg.removeAttribute("class");
18 }
20 window.addEventListener("load", function() { setTimeout(boom, 200); }, false);
22 ]]>
23 </script>
24 <animate id="a"/>
25 </svg>