Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Mear ynfo

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

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

  • 1 antwurd
  • 1 hat dit probleem
  • 1 werjefte
  • Lêste antwurd fan 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>

Alle antwurden (1)

more options

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