Mozilla サポートの検索

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.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

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

  • 1 件の返信
  • 1 人がこの問題に困っています
  • 1 回表示
  • 最後の返信者: 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>

すべての返信 (1)

more options

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