Angular: Empty Fiddle

http://angularjs.org/

HTML

<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<div ng-controller="myCtrl">
  Hello, {{msg}}!
</div>

JavaScript

var myApp = angular.module('myApp',[]);

myApp.config(['$locationProvider', function($locationProvider) {
  $locationProvider.html5Mode({
    enabled: true,
    requireBase: false
  });
}]);

myApp.controller('myCtrl', ['$scope', '$location', function($scope, $location) {
  // Here the ng throw $rootScope:infdig error, when html5mode is on with
  // the page running in a IDN domain and $location is injected
  // (and browser Edge 14.14393 (latest))
  $scope.msg = 'Edge! X_X';
}]);