fork(3) download
  1. <!DOCTYPE html>
  2. <script>
  3. function f()
  4. {
  5. var a = document.createElementNS("http://w...content-available-to-author-only...3.org/2000/svg", "svg");
  6. a.setAttributeNS(null,"version", "1.1" );
  7.  
  8. var txt = document.createElementNS("http://w...content-available-to-author-only...3.org/2000/svg", "text");
  9. txt.setAttributeNS(null,"font-size", 20 );
  10. txt.setAttributeNS(null,"x", 0 );
  11. txt.setAttributeNS(null,"y", 20 );
  12. txt.textContent = document.URL;
  13.  
  14. a.appendChild( txt );
  15. document.getElementById("abc").appendChild( a );
  16. }
  17. </script>
  18. <html>
  19.  
  20. SVG -> <span id="abc"></span>
  21.  
  22. <script>f();</script>
  23.  
  24. </html>
  25.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty