freshp86
freshp86
Closure compiler should allow instantiating or extending the native EventTarget class, see [1]. Also see [2] which depicts that this is already implemented in Chrome. Unfortunately closure compiler throws an...
Repeating from the comment at https://github.com/google/closure-compiler/pull/3730#pullrequestreview-585356152. At https://github.com/google/closure-compiler/pull/3730 the DOMMatrix externs were added. According to the [specification](https://www.w3.org/TR/geometry-1/#dommatrix) the `init` constructor parameter should be marked as optional. 
According to the message at [1], future versions of Closure Compiler binaries will no longer distributed from https://dl.google.com/closure-compiler/ URLs. When comparing the last published version in that endpoint at [2],...
**Note:** Copied from https://github.com/whatwg/html/issues/3601. Please continue discussion here. More context at https://bugs.chromium.org/p/chromium/issues/detail?id=827397. ### Minimal repro 1 This just showcases that any CSS variable is ignored from ::backdrop elements, even without...
Repro: Can be seen on the [official demo page](https://www.webcomponents.org/element/PolymerElements/paper-input/demo/demo/index.html). Move the mouse over the first letter of the "text input" floating label of the 2nd paper-input instance. Observe that the...
There seems to be a race condition at the [https://github.com/PolymerElements/app-layout/blob/master/app-drawer/app-drawer.html#L324](_isRTL) method. At the time it executes on startup `window.getComputedStyle(this).direction` always returns 'ltr' and the drawer is wrongly positioned on the...
See repro at https://jsfiddle.net/no958fqr/. This is causing problems, for example when a paper-dropdown-menu resides within a dialog. Hitting the 'esc' key when the dropdown menu is focused should only close...
paper-radio-group does not directly use paper-radio-button, but it still requires it both in its bower.json as well as at [paper-radio-group.html](https://github.com/PolymerElements/paper-radio-group/blob/master/paper-radio-group.html#L14). This is problematic for Chromium, since we use paper-radio-group, but...
Repro at https://jsfiddle.net/j4rfjasf/10/ Steps: 1. Expand dropdown menu, everything looks fine 2. Click "change dropdown options" Expected: The displayed "selected" value should change from "hello" to "hola" Actual: The displayed...
I am trying to write a simple test where I simulate an "Enter" keystroke on a menu item and then I assert that the current selection of the menu has...