aboutsummaryrefslogtreecommitdiff
path: root/js/tests/visual
AgeCommit message (Collapse)AuthorFilesLines
2017-08-25Fix XSS in data-targetJohann-S1-0/+4
2017-08-25Collapse - preventDefault only on <a> elements not inside the collapsibleJohann-S1-1/+1
element
2017-06-25update instances of .bg-inverse and .bg-faded to .bg-dark and .bg-lightMark Otto1-1/+1
2017-06-25update navbars to rename .navbar-inverse to .navbar-dark, update all navbar ↵Mark Otto3-3/+3
examples and variables
2017-06-15Rename .card-block to .card-body to match nomenclature of modalsMark Otto2-6/+6
2017-06-04Update path to our docs assets for visual testsJohann-S9-14/+15
2017-05-27Update nav and navbar HTML markupGeremia Taglialatela1-1/+1
According to the docs, you just need to apply the `navbar-nav` to an `<ul>` tag in a list-based navbar. In fact, `navbar-nav` seems to override all the css properties set by `nav`. Also, `nav-item` class should be used only for `<li>` tags, or in conjunction with `<a>` tags to entirely avoid the list-based approach. This commit removes the redundant `nav` class from `navbar-nav` `<ul>` tags, moves `nav-item` from `<a>` tags to `<li>` tags and properly adds `nav-item` class to `<li>` tags where missing. Refs: * https://v4-alpha.getbootstrap.com/components/navs/ * https://v4-alpha.getbootstrap.com/components/navbar/#nav
2017-05-24Placement auto for popoversJohann-S1-0/+4
2017-05-24Placement auto for tooltipsJohann-S1-0/+3
2017-05-22Better management of dropdown/dropup with alignmentJohann-S1-10/+28
2017-05-17Use popper to align dropdown menu instead of using css with importantJohann-S1-11/+37
2017-05-14Fix dropdown in scrollspy visual test (add Popper.js)Johann-S1-0/+1
2017-05-14Better placement for Dropdown + Handle flip of Tooltip/PopoverJohann-S1-1/+1
2017-05-14Handle dropup for DropdownJohann-S1-0/+13
2017-05-14Fix unit tests + Update Popper to 1.6.0Johann-S1-0/+18
2017-05-14Begin to use Popper for DropdownJohann-S1-0/+1
2017-05-14Fix arrow for tooltip and popoverJohann-S1-0/+3
2017-05-14Begin to add arrow to Popover and TooltipJohann-S1-1/+1
2017-05-14Use Popper for tooltip and popoverJohann-S2-2/+2
2017-04-21Arguably more professional pictures of Rick RossZach Leatherman1-3/+3
2017-04-11Remove inappropriate role="listbox" from carouselsPatrick H. Lauke1-1/+1
2017-04-02Tabs/Scrollspy/.nav/.list-group/.active independent of markup (<nav>, ↵Pierre Vanduynslager2-43/+38
.nav-item, <li> etc...)
2017-03-28Fix JS components console error "Error: <Component> is transitioning"Pierre Vanduynslager4-87/+2
2017-03-23rename from .navbar-toggleable to .navbar-expand to reflect mobile first ↵Mark Otto2-2/+2
approach everywhere else
2017-03-23more docs updatesMark Otto1-2/+2
2017-03-23Accordion behavior with JQuery interface (#21726)Pierre Vanduynslager1-6/+6
Fix accordion behavior with JQuery interface
2017-03-18Allow to use Tab.js with list-group (#21756)Johann1-0/+35
* Allow to use Tab.js with list-group * Allow to use list-group with div parent instead of an ul parent
2017-01-18Fix missing closing tagPierre-Denis Vanduynslager1-1/+1
2017-01-11Remove incorrect aria-multiselectablePatrick H. Lauke2-2/+2
Closes https://github.com/twbs/bootstrap/issues/21635
2017-01-02update rest of docs, remove navbar specific modifiers, fix docs example cssMark Otto1-1/+1
2016-12-31v4: Rip out IE compatibility mode meta tags (#21483)Mark Otto10-10/+0
* Remove IE compatibility mode meta tag from docs, examples, and JS tests as we no longer support IE9 and IE8 * update and remove some IE bits from our supported browser page * update introduction.md to match * reword starter template intro
2016-12-31Allow to use nav with tab JSJohann-S1-0/+33
2016-12-31nuke local test vendor jquery and tether, replace with docs assetsMark Otto10-13/+13
2016-12-31Update visual test carouselJohann-S1-4/+4
2016-12-30fix navbar in dropdown visual test fileMark Otto1-4/+7
2016-12-07Rename `.active` to `.show`Starsam803-5/+5
2016-12-02[V4] Throw error when a plugin is in transition (#17823)Johann4-2/+87
* Throw error when a plugin is in transition * Add unit tests about plugins in transition
2016-11-25Added a virtual testmatus1-1/+7
2016-11-13Update visual tests.Bardi Harborow10-790/+760
2016-10-25Use a single class name for opened/expanded/shown state of widgetsJohann-S3-4/+4
2016-10-12v4: Fix outdated utilites classesvsn4ik3-9/+9
2016-10-11Collapse using card componentJohann-S2-39/+39
2016-10-03Fix broken/redirected links, moving to HTTPS where possible. (#20557)Bardi Harborow1-3/+3
2016-02-27JS visual tests: Remove usages of defunct .page-header classChris Rebert9-27/+9
[skip sauce]
2016-02-19Fix validation errors.XhmikosR2-2/+2
[skip sauce]
2016-02-16Visual/manual test for checkbox/radio button kbd behaviorPatrick H. Lauke1-0/+5
2015-12-22Add visual test for #18365Chris Rebert1-0/+43
See also https://bugzilla.mozilla.org/show_bug.cgi?id=1228802
2015-11-19Remove stray </p> from js/tests/visual/scrollspy.htmlChris Rebert1-1/+0
[skip sauce]
2015-10-26Remove html5shiv and respond.js from test files.XhmikosR10-73/+0
2015-10-11Use Page Visibility API in Carousel; fixes #17706Johann-S1-1/+9
Avoids cycling carousels when the page isn't visible. Closes #17710 Refs #15566