Update comment.

This commit is contained in:
Kevin Schaaf
2020-02-19 09:39:22 -08:00
parent 353eabde23
commit b9bbee2c75

View File

@@ -962,9 +962,9 @@ suite('timing', function() {
observer = el.shadowRoot.querySelector('#observer');
// Note that path bindings in a falsey dom-if will be updated when the
// dom-if becomes truthy, however path notifications to other elements
// will be lost; this is a fundamental limitation due to the fact that
// batched path notifications are not supported. Hence the `propChanged`
// count increments, but the `pathChanged` count does not.
// will be lost; this is a fundamental limitation (#4818) due to the fact
// that batched path notifications are not supported. Hence the
// `propChanged` count increments, but the `pathChanged` count does not.
assert.equal(observer.propChanged.callCount, restamp ? 1 : 2);
assert.equal(observer.pathChanged.callCount, 1);
document.body.removeChild(el);