Skip to content

Commit

Permalink
remove refs to polymer.element
Browse files Browse the repository at this point in the history
  • Loading branch information
notwaldorf committed Jul 24, 2018
1 parent 63e5487 commit 79cb934
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions test/iron-flex-layout-classes.html
Expand Up @@ -108,7 +108,6 @@

<script type="module">
import '../iron-flex-layout-classes.js';
import {PolymerElement} from '@polymer/polymer/polymer-element.js';
function positionEquals(node, top, bottom, left, right) {
function basicallyEquals(one, two) {
var val = Math.abs(one - two);
Expand All @@ -127,11 +126,9 @@

suite('basic layout', function() {
suiteSetup(function() {
// In Polymer 2.0, custom-style is lazy, and won't boot until a
// custom-style is lazy, and won't boot until a
// Polymer element is used (and these tests don't have a Polymer element).
if (PolymerElement) {
window.ShadyCSS.styleDocument();
}
window.ShadyCSS.styleDocument();
});

var container;
Expand Down
7 changes: 2 additions & 5 deletions test/iron-flex-layout.html
Expand Up @@ -132,7 +132,6 @@
</test-fixture>
<script type="module">
import '../iron-flex-layout.js';
import {PolymerElement} from '@polymer/polymer/polymer-element.js';

function positionEquals(node, top, bottom, left, right) {
function basicallyEquals(one, two) {
Expand All @@ -152,11 +151,9 @@

suite('basic layout', function() {
suiteSetup(function() {
// In Polymer 2.0, custom-style is lazy, and won't boot until a
// custom-style is lazy, and won't boot until a
// Polymer element is used (and these tests don't have a Polymer element).
if (PolymerElement) {
window.ShadyCSS.styleDocument();
}
window.ShadyCSS.styleDocument();
});

var container;
Expand Down

0 comments on commit 79cb934

Please sign in to comment.