| Code-Review | +1 |
event.button() == 1) {while a bit ugly, I think the proper thing would be
```
event.button() == static_cast<int16_t>(WebPointerProperties::Button::kMiddle);
```
<a id="link" href="#">Link</a>Are you interested in other anchor links? E.g.
```
<map id="m">
<area href="" shape="default">
</map>
<img src="" usemap="#map1">
<svg xmlns="http://www.w3.org/2000/svg">
<a href=""><text>link</text></a>
</svg>
```
?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Looks good! Modulo a few questions
Thanks!
while a bit ugly, I think the proper thing would be
```
event.button() == static_cast<int16_t>(WebPointerProperties::Button::kMiddle);
```
Done
Are you interested in other anchor links? E.g.
```
<map id="m">
<area href="" shape="default">
</map>
<img src="" usemap="#map1"><svg xmlns="http://www.w3.org/2000/svg">
<a href=""><text>link</text></a>
</svg>
```?
Ohh, good catch. I guess I'm interested in any click that leads to one particular navigation path, which these do. I added separate UseCounters (so I can distinguish where the usage is, if any) and tests for these.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
<a id="link" href="#">Link</a>Emily StarkAre you interested in other anchor links? E.g.
```
<map id="m">
<area href="" shape="default">
</map>
<img src="" usemap="#map1"><svg xmlns="http://www.w3.org/2000/svg">
<a href=""><text>link</text></a>
</svg>
```?
Ohh, good catch. I guess I'm interested in any click that leads to one particular navigation path, which these do. I added separate UseCounters (so I can distinguish where the usage is, if any) and tests for these.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Measure click events from synthesized middle-clicks
Chrome will dispatch a synthesized "click" event with {"button": 1} to
an anchor element, but per spec it is unclear whether this should be
allowed. Measure how common this is so that we can hopefully deprecate.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |