OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * Copyright (C) 2004-2008, 2013, 2014 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004-2008, 2013, 2014 Apple Inc. All rights reserved. |
5 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 5 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
6 * Copyright (C) 2011 Motorola Mobility. All rights reserved. | 6 * Copyright (C) 2011 Motorola Mobility. All rights reserved. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 { ondragoverAttr, EventTypeNames::dragover }, | 295 { ondragoverAttr, EventTypeNames::dragover }, |
296 { ondragstartAttr, EventTypeNames::dragstart }, | 296 { ondragstartAttr, EventTypeNames::dragstart }, |
297 { ondropAttr, EventTypeNames::drop }, | 297 { ondropAttr, EventTypeNames::drop }, |
298 { ondurationchangeAttr, EventTypeNames::durationchange }, | 298 { ondurationchangeAttr, EventTypeNames::durationchange }, |
299 { onemptiedAttr, EventTypeNames::emptied }, | 299 { onemptiedAttr, EventTypeNames::emptied }, |
300 { onendedAttr, EventTypeNames::ended }, | 300 { onendedAttr, EventTypeNames::ended }, |
301 { onerrorAttr, EventTypeNames::error }, | 301 { onerrorAttr, EventTypeNames::error }, |
302 { onfocusAttr, EventTypeNames::focus }, | 302 { onfocusAttr, EventTypeNames::focus }, |
303 { onfocusinAttr, EventTypeNames::focusin }, | 303 { onfocusinAttr, EventTypeNames::focusin }, |
304 { onfocusoutAttr, EventTypeNames::focusout }, | 304 { onfocusoutAttr, EventTypeNames::focusout }, |
| 305 { ongotpointercaptureAttr, EventTypeNames::gotpointercapture }, |
305 { oninputAttr, EventTypeNames::input }, | 306 { oninputAttr, EventTypeNames::input }, |
306 { oninvalidAttr, EventTypeNames::invalid }, | 307 { oninvalidAttr, EventTypeNames::invalid }, |
307 { onkeydownAttr, EventTypeNames::keydown }, | 308 { onkeydownAttr, EventTypeNames::keydown }, |
308 { onkeypressAttr, EventTypeNames::keypress }, | 309 { onkeypressAttr, EventTypeNames::keypress }, |
309 { onkeyupAttr, EventTypeNames::keyup }, | 310 { onkeyupAttr, EventTypeNames::keyup }, |
310 { onloadAttr, EventTypeNames::load }, | 311 { onloadAttr, EventTypeNames::load }, |
311 { onloadeddataAttr, EventTypeNames::loadeddata }, | 312 { onloadeddataAttr, EventTypeNames::loadeddata }, |
312 { onloadedmetadataAttr, EventTypeNames::loadedmetadata }, | 313 { onloadedmetadataAttr, EventTypeNames::loadedmetadata }, |
313 { onloadstartAttr, EventTypeNames::loadstart }, | 314 { onloadstartAttr, EventTypeNames::loadstart }, |
| 315 { onlostpointercaptureAttr, EventTypeNames::lostpointercapture }, |
314 { onmousedownAttr, EventTypeNames::mousedown }, | 316 { onmousedownAttr, EventTypeNames::mousedown }, |
315 { onmouseenterAttr, EventTypeNames::mouseenter }, | 317 { onmouseenterAttr, EventTypeNames::mouseenter }, |
316 { onmouseleaveAttr, EventTypeNames::mouseleave }, | 318 { onmouseleaveAttr, EventTypeNames::mouseleave }, |
317 { onmousemoveAttr, EventTypeNames::mousemove }, | 319 { onmousemoveAttr, EventTypeNames::mousemove }, |
318 { onmouseoutAttr, EventTypeNames::mouseout }, | 320 { onmouseoutAttr, EventTypeNames::mouseout }, |
319 { onmouseoverAttr, EventTypeNames::mouseover }, | 321 { onmouseoverAttr, EventTypeNames::mouseover }, |
320 { onmouseupAttr, EventTypeNames::mouseup }, | 322 { onmouseupAttr, EventTypeNames::mouseup }, |
321 { onmousewheelAttr, EventTypeNames::mousewheel }, | 323 { onmousewheelAttr, EventTypeNames::mousewheel }, |
322 { onpasteAttr, EventTypeNames::paste }, | 324 { onpasteAttr, EventTypeNames::paste }, |
323 { onpauseAttr, EventTypeNames::pause }, | 325 { onpauseAttr, EventTypeNames::pause }, |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1037 #ifndef NDEBUG | 1039 #ifndef NDEBUG |
1038 | 1040 |
1039 // For use in the debugger | 1041 // For use in the debugger |
1040 void dumpInnerHTML(blink::HTMLElement*); | 1042 void dumpInnerHTML(blink::HTMLElement*); |
1041 | 1043 |
1042 void dumpInnerHTML(blink::HTMLElement* element) | 1044 void dumpInnerHTML(blink::HTMLElement* element) |
1043 { | 1045 { |
1044 printf("%s\n", element->innerHTML().ascii().data()); | 1046 printf("%s\n", element->innerHTML().ascii().data()); |
1045 } | 1047 } |
1046 #endif | 1048 #endif |
OLD | NEW |