1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/base/content/test/plugins/plugin_bug820497.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head><meta charset="utf-8"/></head> 1.7 +<body> 1.8 +<object id="test" type="application/x-test" width=200 height=200></object> 1.9 +<script> 1.10 + function addSecondPlugin() { 1.11 + var object = document.createElement("object"); 1.12 + object.type = "application/x-second-test"; 1.13 + object.width = 200; 1.14 + object.height = 200; 1.15 + object.id = "secondtest"; 1.16 + document.body.appendChild(object); 1.17 + } 1.18 +</script> 1.19 +</body> 1.20 +</html>