Advertisement
arabuli

Validation results

Dec 26th, 2011
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. Illegal or deprecated access to the 'evalInSandbox' global
  2. Warning: Access to the 'evalInSandbox' property is deprecated for security or other reasons.
  3. content/script-compiler.js
  4. 116
  5. 117
  6. 118
  7. Components.utils.evalInSandbox(code, sandbox);
  8. } else if (Components.utils && Components.utils.evalInSandbox) {
  9. // DP alphas
  10. Illegal or deprecated access to the 'evalInSandbox' global
  11. Warning: Access to the 'evalInSandbox' property is deprecated for security or other reasons.
  12. content/script-compiler.js
  13. 118
  14. 119
  15. 120
  16. // DP alphas
  17. Components.utils.evalInSandbox(code, codebase, sandbox);
  18. } else if (Sandbox) {
  19. Illegal or deprecated access to the 'evalInSandbox' global
  20. Warning: Access to the 'evalInSandbox' property is deprecated for security or other reasons.
  21. content/script-compiler.js
  22. 115
  23. 116
  24. 117
  25. // DP beta+
  26. Components.utils.evalInSandbox(code, sandbox);
  27. } else if (Components.utils && Components.utils.evalInSandbox) {
  28. innerHTML should not be set dynamically
  29. Warning: Due to both security and performance reasons, innerHTML should not be set using dynamic values. This can lead to security issues or fairly serious performance degradation.
  30. content/script-compiler.js
  31. 209
  32. 210
  33. 211
  34. style.type = 'text/css';
  35. style.innerHTML = css;
  36. head.appendChild(style);
  37. Potentially unsafe preference branch referenced
  38. Warning: Extensions should not alter preferences in the 'network.http.' preference branch
  39. content/script-compiler.js
  40. 138
  41. 139
  42. 140
  43. loadInBackground = tabBrowser.mPrefs.getBoolPref("browser.tabs.loadInBackground");
  44. sendReferrer = tabBrowser.mPrefs.getIntPref("network.http.sendRefererHeader");
  45. if (sendReferrer) {
  46. innerHTML should not be set dynamically
  47. Warning: Due to both security and performance reasons, innerHTML should not be set using dynamic values. This can lead to security issues or fairly serious performance degradation.
  48. content/iforum.js
  49. 467
  50. button.innerHTML = wrapper.text;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement