Skip to content

Commit

Permalink
merge from master cleanup, #715
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Jul 4, 2018
1 parent 7abd49b commit 3c5e953
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion js/accessibility/Accessibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ define( function( require ) {
var scenery = require( 'SCENERY/scenery' );

var INPUT_TAG = AccessibilityUtil.TAGS.INPUT;
var DIV_TAG = AccessibilityUtil.TAGS.DIV;
var P_TAG = AccessibilityUtil.TAGS.P;

// default tag names for siblings
Expand Down
2 changes: 1 addition & 1 deletion js/accessibility/AccessibilityTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ define( function( require ) {
assert.ok( aElement.getAttribute( attribute ) === [ bElement.id, cElement.id ].join( ' ' ),
'should have invalidated on tree change' );

var d = new Node( { tagName: 'div', descriptionTagName: 'p', innerContent: TEST_LABEL } );
var d = new Node( { tagName: 'div', descriptionTagName: 'p', innerContent: TEST_LABEL, containerTagName: 'div' } );
rootNode.addChild( d );

b[ addAssociationFunction ]( {
Expand Down

0 comments on commit 3c5e953

Please sign in to comment.