Example usage for com.google.gwt.modernizr.client.utils VideoElement create

List of usage examples for com.google.gwt.modernizr.client.utils VideoElement create

Introduction

In this page you can find the example usage for com.google.gwt.modernizr.client.utils VideoElement create.

Prototype

public static VideoElement create() 

Source Link

Usage

From source file:com.google.gwt.modernizr.client.tests.Video.java

License:MIT License

@Override
protected boolean runTest() {
    VideoElement element = VideoElement.create();
    return element.getPropertyBoolean("canPlayType");
}