| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 void PasswordGeneratorButtonElement::decorate(HTMLInputElement* input) | 84 void PasswordGeneratorButtonElement::decorate(HTMLInputElement* input) |
| 85 { | 85 { |
| 86 ASSERT(input); | 86 ASSERT(input); |
| 87 ShadowRoot* existingRoot; | 87 ShadowRoot* existingRoot; |
| 88 ShadowRoot* decorationRoot; | 88 ShadowRoot* decorationRoot; |
| 89 getDecorationRootAndDecoratedRoot(input, decorationRoot, existingRoot); | 89 getDecorationRootAndDecoratedRoot(input, decorationRoot, existingRoot); |
| 90 ASSERT(decorationRoot); | 90 ASSERT(decorationRoot); |
| 91 ASSERT(existingRoot); | 91 ASSERT(existingRoot); |
| 92 RefPtr<HTMLDivElement> box = HTMLDivElement::create(input->document()); | 92 RefPtr<HTMLDivElement> box = HTMLDivElement::create(input->document()); |
| 93 decorationRoot->appendChild(box); | 93 decorationRoot->appendChild(box, ASSERT_NO_EXCEPTION, DeprecatedAttachNow); |
| 94 box->setInlineStyleProperty(CSSPropertyDisplay, CSSValueFlex); | 94 box->setInlineStyleProperty(CSSPropertyDisplay, CSSValueFlex); |
| 95 box->setInlineStyleProperty(CSSPropertyAlignItems, CSSValueCenter); | 95 box->setInlineStyleProperty(CSSPropertyAlignItems, CSSValueCenter); |
| 96 ASSERT(existingRoot->childNodeCount() == 1); | 96 ASSERT(existingRoot->childNodeCount() == 1); |
| 97 toHTMLElement(existingRoot->firstChild())->setInlineStyleProperty(CSSPropert
yFlexGrow, 1.0, CSSPrimitiveValue::CSS_NUMBER); | 97 toHTMLElement(existingRoot->firstChild())->setInlineStyleProperty(CSSPropert
yFlexGrow, 1.0, CSSPrimitiveValue::CSS_NUMBER); |
| 98 box->appendChild(HTMLShadowElement::create(HTMLNames::shadowTag, input->docu
ment())); | 98 box->appendChild(HTMLShadowElement::create(HTMLNames::shadowTag, input->docu
ment()), ASSERT_NO_EXCEPTION, DeprecatedAttachNow); |
| 99 setInlineStyleProperty(CSSPropertyDisplay, CSSValueNone); | 99 setInlineStyleProperty(CSSPropertyDisplay, CSSValueNone); |
| 100 box->appendChild(this); | 100 box->appendChild(this, ASSERT_NO_EXCEPTION, DeprecatedAttachNow); |
| 101 } | 101 } |
| 102 | 102 |
| 103 inline HTMLInputElement* PasswordGeneratorButtonElement::hostInput() | 103 inline HTMLInputElement* PasswordGeneratorButtonElement::hostInput() |
| 104 { | 104 { |
| 105 // PasswordGeneratorButtonElement is created only by C++ code, and it is alw
ays | 105 // PasswordGeneratorButtonElement is created only by C++ code, and it is alw
ays |
| 106 // in <input> shadow. | 106 // in <input> shadow. |
| 107 return toHTMLInputElement(shadowHost()); | 107 return toHTMLInputElement(shadowHost()); |
| 108 } | 108 } |
| 109 | 109 |
| 110 void PasswordGeneratorButtonElement::updateImage() | 110 void PasswordGeneratorButtonElement::updateImage() |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 bool PasswordGeneratorButtonElement::willRespondToMouseClickEvents() | 202 bool PasswordGeneratorButtonElement::willRespondToMouseClickEvents() |
| 203 { | 203 { |
| 204 const HTMLInputElement* input = hostInput(); | 204 const HTMLInputElement* input = hostInput(); |
| 205 if (!input->isDisabledOrReadOnly()) | 205 if (!input->isDisabledOrReadOnly()) |
| 206 return true; | 206 return true; |
| 207 | 207 |
| 208 return HTMLDivElement::willRespondToMouseClickEvents(); | 208 return HTMLDivElement::willRespondToMouseClickEvents(); |
| 209 } | 209 } |
| 210 | 210 |
| 211 } // namespace WebCore | 211 } // namespace WebCore |
| OLD | NEW |