diff --git a/lib/web/css/docs/source/_utilities.less b/lib/web/css/docs/source/_utilities.less
index 312eeffe488ca..1ce15a9a50e2d 100644
--- a/lib/web/css/docs/source/_utilities.less
+++ b/lib/web/css/docs/source/_utilities.less
@@ -367,66 +367,3 @@
//
//
//
-
-// # .lib-url-check()
-//
-// The .lib-url-check()
mixin wraps passed value with 'url( ... )' and returns @lib-url-check-output
variable. Can be used with .lib-css()
mixin.
-//
-
-.example-url-check {
- // Set image path variable
- @_icon-image: '/images/test.png';
-
- // "Call" the mixin
- .lib-url-check(@_icon-image);
-
- // Will return url('/images/test.png')
- .lib-css(background, #eee @lib-url-check-output no-repeat 0 0);
-}
-
-//
-// If the variable is set to false
, the .lib-url-check()
will return false.
-//
-// ```
-//
-//
Mixin variable | -//Allowed values | -//Output variable | -//Comment | -//
---|---|---|---|
@_path | -//'' | false | value | -//@lib-url-check-output | -//Passed url to wrap in 'url( ... )'. If the 'false' value passed mixin will return 'false' | -//