Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

https://bugzilla.mozilla.org/show_bug.cgi?id=1374994

  • 1 odgovor
  • 1 ima ovaj problem
  • 2 views
  • Posljednji odgovor poslao TyDraniu

more options

is this bug resolved or not?. But status is Resolved wontFix-- what it means

I am not understanding, I was tested code not seen any difference. Here is code


<input type="button" onclick="addDivBlock()" value="Add Div-Block"> <input type="button" onclick="addDivInline()" value="Add Div-Inline"> <input type="button" onclick="addDiv()" value="Add Div"> <script> function addDivInline() { var div = document.createElement('div'); //,{id:'divNew'} div.innerHTML="Div added from javascript" div.style.cssText="font-weight: bold;display:inline;border:dotted red" document.body.appendChild(div); } function addDivBlock() { var div = document.createElement('div'); //,{id:'divNew'} div.innerHTML="Div added from javascript" div.style.cssText="font-weight: bold;display:Block;border:dotted red" document.body.appendChild(div); } function addDiv() { var div = document.createElement('div'); //,{id:'divNew'} div.innerHTML="Div added from javascript - without display property" div.style.cssText="font-weight: bold;border:dotted red" document.body.appendChild(div); } </script>

is this bug resolved or not?. But status is Resolved wontFix-- what it means I am not understanding, I was tested code not seen any difference. Here is code <html> <body> <input type="button" onclick="addDivBlock()" value="Add Div-Block"/> <input type="button" onclick="addDivInline()" value="Add Div-Inline"/> <input type="button" onclick="addDiv()" value="Add Div"/> </body> <script> function addDivInline() { var div = document.createElement('div'); //,{id:'divNew'} div.innerHTML="Div added from javascript" div.style.cssText="font-weight: bold;display:inline;border:dotted red" document.body.appendChild(div); } function addDivBlock() { var div = document.createElement('div'); //,{id:'divNew'} div.innerHTML="Div added from javascript" div.style.cssText="font-weight: bold;display:Block;border:dotted red" document.body.appendChild(div); } function addDiv() { var div = document.createElement('div'); //,{id:'divNew'} div.innerHTML="Div added from javascript - without display property" div.style.cssText="font-weight: bold;border:dotted red" document.body.appendChild(div); } </script> <html>

All Replies (1)

more options

Do you have layout.css.servo.enabled = true in about:config?