This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * A simple browser feature sleuth that sets class names on html and body. | |
| * - Sleuth.sniff() | |
| * Tested with IE9-11, all evergreen Chrome, Firefox, EdgeHTML/Edgium, Opera. | |
| * | |
| * @version 1.3.3 02.05.2020 | |
| * @author WebMechanic.biz (c)2019 | |
| * @license DWTF | |
| */ | |
| const Sleuth = {agents:{}, features:{}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>background-blend-mode - Examples - code sample</title> | |
| <style> | |
| #div { | |
| width: 360px; | |
| height: 360px; | |
| background-position: center; | |
| background-color: transparent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <style> | |
| /** | |
| * @link https://developer.mozilla.org/en-US/docs/Web/CSS/@supports | |
| * `@supports selector` works in Firefox/69, Chrome/82 Canary, Edg/81 Dev | |
| * | |
| * @link https://developer.mozilla.org/en-US/docs/Web/CSS/:is | |
| * `:is(a,b)` works with chrome://flags in Chrome/68 Canary, Edg/79 Dev | |
| * `:-moz-any(a,b)` works in Firefox/69 | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. | |
| * @license GNU General Public License version 2 or later; see LICENSE.txt | |
| */ | |
| // Only define the Joomla namespace if not defined. | |
| if (typeof(Joomla) === 'undefined') { | |
| var Joomla = {}; | |
| } |