OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 } | 44 } |
45 | 45 |
46 PassRefPtr<ClearButtonElement> ClearButtonElement::create(Document* document, Cl
earButtonOwner& clearButtonOwner) | 46 PassRefPtr<ClearButtonElement> ClearButtonElement::create(Document* document, Cl
earButtonOwner& clearButtonOwner) |
47 { | 47 { |
48 RefPtr<ClearButtonElement> element = adoptRef(new ClearButtonElement(documen
t, clearButtonOwner)); | 48 RefPtr<ClearButtonElement> element = adoptRef(new ClearButtonElement(documen
t, clearButtonOwner)); |
49 element->setPseudo(AtomicString("-webkit-clear-button", AtomicString::Constr
uctFromLiteral)); | 49 element->setPseudo(AtomicString("-webkit-clear-button", AtomicString::Constr
uctFromLiteral)); |
50 element->setAttribute(idAttr, ShadowElementNames::clearButton()); | 50 element->setAttribute(idAttr, ShadowElementNames::clearButton()); |
51 return element.release(); | 51 return element.release(); |
52 } | 52 } |
53 | 53 |
54 void ClearButtonElement::detach() | 54 void ClearButtonElement::detach(const AttachContext& context) |
55 { | 55 { |
56 if (m_capturing) { | 56 if (m_capturing) { |
57 if (Frame* frame = document()->frame()) | 57 if (Frame* frame = document()->frame()) |
58 frame->eventHandler()->setCapturingMouseEventsNode(0); | 58 frame->eventHandler()->setCapturingMouseEventsNode(0); |
59 } | 59 } |
60 HTMLDivElement::detach(); | 60 HTMLDivElement::detach(context); |
61 } | 61 } |
62 | 62 |
63 void ClearButtonElement::releaseCapture() | 63 void ClearButtonElement::releaseCapture() |
64 { | 64 { |
65 if (!m_capturing) | 65 if (!m_capturing) |
66 return; | 66 return; |
67 | 67 |
68 if (Frame* frame = document()->frame()) { | 68 if (Frame* frame = document()->frame()) { |
69 frame->eventHandler()->setCapturingMouseEventsNode(0); | 69 frame->eventHandler()->setCapturingMouseEventsNode(0); |
70 m_capturing = false; | 70 m_capturing = false; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 if (!event->defaultHandled()) | 111 if (!event->defaultHandled()) |
112 HTMLDivElement::defaultEventHandler(event); | 112 HTMLDivElement::defaultEventHandler(event); |
113 } | 113 } |
114 | 114 |
115 bool ClearButtonElement::isClearButtonElement() const | 115 bool ClearButtonElement::isClearButtonElement() const |
116 { | 116 { |
117 return true; | 117 return true; |
118 } | 118 } |
119 | 119 |
120 } | 120 } |
OLD | NEW |