| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "core/html/HTMLNoScriptElement.h" | 32 #include "core/html/HTMLNoScriptElement.h" |
| 33 | 33 |
| 34 #include "HTMLNames.h" | 34 #include "HTMLNames.h" |
| 35 #include "bindings/v8/ScriptController.h" | 35 #include "bindings/v8/ScriptController.h" |
| 36 #include "core/frame/LocalFrame.h" | 36 #include "core/frame/LocalFrame.h" |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace WebCore { |
| 39 | 39 |
| 40 using namespace HTMLNames; | 40 using namespace HTMLNames; |
| 41 | 41 |
| 42 HTMLNoScriptElement::HTMLNoScriptElement(Document& document) | 42 inline HTMLNoScriptElement::HTMLNoScriptElement(Document& document) |
| 43 : HTMLElement(noscriptTag, document) | 43 : HTMLElement(noscriptTag, document) |
| 44 { | 44 { |
| 45 } | 45 } |
| 46 | 46 |
| 47 PassRefPtrWillBeRawPtr<HTMLNoScriptElement> HTMLNoScriptElement::create(Document
& document) | 47 DEFINE_NODE_FACTORY(HTMLNoScriptElement) |
| 48 { | |
| 49 return adoptRefWillBeRefCountedGarbageCollected(new HTMLNoScriptElement(docu
ment)); | |
| 50 } | |
| 51 | 48 |
| 52 bool HTMLNoScriptElement::rendererIsNeeded(const RenderStyle& style) | 49 bool HTMLNoScriptElement::rendererIsNeeded(const RenderStyle& style) |
| 53 { | 50 { |
| 54 if (document().frame()->script().canExecuteScripts(NotAboutToExecuteScript)) | 51 if (document().frame()->script().canExecuteScripts(NotAboutToExecuteScript)) |
| 55 return false; | 52 return false; |
| 56 return Element::rendererIsNeeded(style); | 53 return Element::rendererIsNeeded(style); |
| 57 | 54 |
| 58 } | 55 } |
| 59 | 56 |
| 60 } | 57 } |
| OLD | NEW |