Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(select): remove workaround for Chrome bug #14705

Merged
merged 1 commit into from
Jun 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions src/ng/directive/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,6 @@

var noopNgModelController = { $setViewValue: noop, $render: noop };

function chromeHack(optionElement) {
// Workaround for https://code.google.com/p/chromium/issues/detail?id=381459
// Adding an <option selected="selected"> element to a <select required="required"> should
// automatically select the new element
if (optionElement[0].hasAttribute('selected')) {
optionElement[0].selected = true;
}
}

/**
* @ngdoc type
* @name select.SelectController
Expand Down Expand Up @@ -90,7 +81,6 @@ var SelectController =
var count = optionsMap.get(value) || 0;
optionsMap.put(value, count + 1);
self.ngModelCtrl.$render();
chromeHack(element);
};

// Tell the select control that an option, with the given value, has been removed
Expand Down
17 changes: 17 additions & 0 deletions test/ng/directive/ngOptionsSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2683,6 +2683,23 @@ describe('ngOptions', function() {
});
});

describe('required and empty option', function() {

it('should select the empty option after compilation', function() {
createSelect({
'name': 'select',
'ng-model': 'value',
'ng-options': 'item for item in [\'first\', \'second\', \'third\']',
'required': 'required'
}, true);

expect(element.val()).toBe('');
var emptyOption = element.find('option').eq(0);
expect(emptyOption.prop('selected')).toBe(true);
expect(emptyOption.val()).toBe('');
});
});

describe('ngModelCtrl', function() {
it('should prefix the model value with the word "the" using $parsers', function() {
createSelect({
Expand Down